:root {
    /* Using colors derived from the attached logo */
    --primary-color: #5E1114; /* Deep rich red background */
    --accent-color: #C69A5D; /* Gold/Tan from the swoosh */
    --logo-red: #B32126; /* The bright red of the logo */
    --bg-overlay: rgba(30, 0, 0, 0.6); /* Warmer dark overlay */
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    background-color: var(--primary-color);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, .tagline {
    font-family: 'Poppins', sans-serif;
}

/* Full-screen Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background Video and Fallback Gradient */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    /* Rich radial gradient fallback using logo reds */
    background: radial-gradient(circle at center, var(--logo-red) 0%, #2a0507 100%);
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle zoom animation */
    animation: smoothZoom 25s ease-in-out infinite alternate;
}

@keyframes smoothZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 2;
}

/* Centered Content */
.content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Logo Setup */
.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.coming-soon-text {
    /* Premium golden gradient text */
    background: linear-gradient(135deg, #F0DBA5 0%, var(--accent-color) 40%, var(--accent-color) 60%, #FFF 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* Cancel the text-shadow internally so the flat gradient shines */
    text-shadow: none;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    animation: shine 4s linear infinite, floatText 3.5s ease-in-out infinite alternate;
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes floatText {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

.subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 0 rgba(198, 154, 93, 0)); }
    100% { filter: drop-shadow(0 0 10px rgba(198, 154, 93, 0.4)); }
}

.makers-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    z-index: 3;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

/* Smooth Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

/* Responsive adjustments */
@media (min-width: 600px) {
    .logo {
        max-width: 320px;
    }
    h1 {
        font-size: 2.5rem;
    }
    .subtext {
        font-size: 1.15rem;
    }
    .tagline {
        font-size: 1.35rem;
    }
}

@media (max-height: 600px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 2rem;
        padding-bottom: 6rem;
    }
    footer {
        bottom: 1rem;
    }
}
