/* Global styles */ :root { --primary: #10b981; --primary-hover: #059669; --secondary: #111827; --text: #f9f9f9; --text-dark: #111; } body { font-family: sans-serif; background: var(--secondary); color: var(--text); margin: 0; padding: 0; line-height: 1.6; } section { padding: 4rem 1rem; max-width: 1200px; margin: 0 auto; } h1, h2, h3, h4 { font-weight: bold; line-height: 1.2; } h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; } .btn { display: inline-block; background: var(--primary); color: var(--text-dark); font-weight: bold; padding: 0.75rem 1.5rem; border-radius: 9999px; text-decoration: none; transition: all 0.3s ease; text-align: center; } .btn:hover { background: var(--primary-hover); transform: scale(1.05); } /* Hero Section */ .hero { position: relative; width: 100%; height: 100vh; overflow: hidden; } .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.35); z-index: 1; } .hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 1rem; } .hero-content h1 { font-size: 3rem; margin-bottom: 2rem; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); } /* About Section */ .about-section { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; } .about-image img { width: 100%; max-width: 500px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .service-card { background: rgba(255, 255, 255, 0.1); padding: 2rem; border-radius: 12px; transition: all 0.3s ease; } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } /* Pricing Section */ .prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .price-card { background: rgba(255, 255, 255, 0.1); padding: 2rem; border-radius: 12px; position: relative; transition: all 0.3s ease; } .price-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } .price-card.popular { border: 2px solid var(--primary); } .popular-tag { position: absolute; top: -12px; right: 20px; background: var(--primary); color: var(--text-dark); padding: 0.25rem 1rem; border-radius: 9999px; font-weight: bold; font-size: 0.875rem; } /* Responsive */ @media (max-width: 768px) { .hero-content h1 { font-size: 2rem; } .about-section { grid-template-columns: 1fr; } } /* Hero Section */ #home { height: 100vh; position: relative; overflow: hidden; } #home .absolute { z-index: 10; } #home iframe { width: 100%; height: 100%; object-fit: cover; } /* Hero Image Section */ .relative.w-full.bg-gray-900 { min-height: 50vh; } .relative.w-full.bg-gray-900 img { max-height: 70vh; object-position: center; } @media (min-width: 1024px) { .relative.w-full.bg-gray-900 { min-height: 60vh; } .relative.w-full.bg-gray-900 img { max-height: 80vh; } } /* Hero Content */ .hero-content { animation: fadeInUp 1s ease-out; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Scroll Down Indicator */ .animate-bounce { animation: bounce 2s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-20px); } 60% { transform: translateY(-10px); } } /* Hero Image Section */ .bg-gradient-to-b { background-size: cover; background-position: center; } @media (max-width: 768px) { #home h1 { font-size: 2.5rem; line-height: 1.2; } .hero-buttons { flex-direction: column; gap: 1rem; } .hero-image-section { padding-top: 3rem; padding-bottom: 3rem; } .hero-image-content { padding-top: 2rem; } }