/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header - matching the React Header component */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #030213;
    line-height: 1.5;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-item {
    color: #4a5568;
    transition: color 0.3s ease;
    cursor: not-allowed;
    opacity: 0.5;
}

.nav-item.disabled {
    pointer-events: none;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    font-size: 1.5rem;
    color: #4a5568;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Hero Section - matching the React HeroSection component */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: white;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Coming Soon Content */
.coming-soon-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-content > p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

/* Email signup */
.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 24rem;
    margin: 0 auto 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-signup input {
    flex: 1;
    min-width: 12rem;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.email-signup input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-signup input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.email-signup button {
    padding: 0.75rem 1.5rem;
    background: #030213;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-signup button:hover {
    background: rgba(3, 2, 19, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.email-signup button:active {
    transform: translateY(0);
}

/* Contact info */
.contact-info {
    font-size: 0.875rem;
    color: #d1d5db;
}

.contact-info a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f7fafc;
}

/* Services preview */
.services-preview {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.services-preview h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-item span:last-child {
    font-size: 0.875rem;
    color: #d1d5db;
    font-weight: 500;
    text-align: center;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #48bb78;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.notification.show {
    transform: translateX(0);
}

.notification.hidden {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .coming-soon-content {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .coming-soon-content h2 {
        font-size: 1.5rem;
    }
    
    .email-signup {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .email-signup input,
    .email-signup button {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .service-item {
        padding: 0.75rem;
    }
    
    .service-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .coming-soon-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}