/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* Main Layout */
.main-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeIn 2s ease-out;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Coming Soon Text */
.coming-soon-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 40px rgba(189, 224, 165, 0.1);
    }
}

/* Subtitle */
.subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 500;
    color: #e5e5e5;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 1.8s ease-out 0.3s both;
}

/* Description */
.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: #c0c0c0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 2s ease-out 0.6s both;
}

/* Contact Section */
.contact-section {
    animation: fadeInUp 2.2s ease-out 0.9s both;
}

.contact-label {
    font-size: 1rem;
    font-weight: 500;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.contact-email {
    display: inline-block;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #BDE0A5;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #BDE0A5;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 224, 165, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-email:hover::before {
    left: 100%;
}

.contact-email:hover {
    background-color: #BDE0A5;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(189, 224, 165, 0.3);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }
    
    .container {
        max-width: 100%;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .coming-soon-text {
        margin-bottom: 1rem;
        letter-spacing: 0.05em;
    }
    
    .subtitle {
        margin-bottom: 1.5rem;
    }
    
    .description {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .contact-email {
        padding: 0.6rem 1.2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .contact-email {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.contact-email:focus {
    outline: 3px solid rgba(189, 224, 165, 0.5);
    outline-offset: 2px;
}

/* Loading state for video */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: -3;
}

/* Fallback background when video fails to load */
.video-container.no-video {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.video-container.no-video #background-video {
    display: none;
}

/* Ensure text remains readable during font loading */
body {
    font-display: swap;
}