/* ===== CSS Variables ===== */
:root {
    --color-olive: #4A5D23;
    --color-olive-dark: #3D4E1C;
    --color-sage: #6B7F5E;
    --color-sage-light: #8FA67A;
    --color-brown: #8B7355;
    --color-cream: #F8F6F0;
    --color-cream-warm: #FAF8F3;
    --color-text: #4A5D23;
    --color-text-light: #6B6B6B;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: var(--color-cream);
}

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

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 243, 0.3);
    pointer-events: none;
}

/* ===== Main Container ===== */
.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Logo ===== */
.logo-wrapper {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 120px;
    height: auto;
    border-radius: 8px;
    opacity: 0.95;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

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

/* ===== Content ===== */
.content {
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.main-text {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 600;
    font-style: italic;
    color: var(--color-olive);
    line-height: 1.25;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.italic-text {
    display: block;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--color-olive);
    color: white;
    padding: 0.5rem 1.2rem;
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-top: 0.8rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(74, 93, 35, 0.3);
    animation: fadeIn 1.5s ease-out 0.8s backwards;
}

/* ===== Footer ===== */
.footer {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1.5s ease-out 1s backwards;
}

.footer p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.8;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .logo {
        width: 100px;
    }
    
    .logo-wrapper {
        top: 1.5rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .main-text {
        line-height: 1.4;
    }
    
    .coming-soon-badge {
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
    }
    
    .logo-wrapper {
        top: 1rem;
    }
    
    .main-text {
        font-size: 1.8rem;
    }
    
    .coming-soon-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .footer {
        bottom: 1rem;
    }
    
    .footer p {
        font-size: 0.7rem;
    }
}

/* ===== For browsers that don't support video ===== */
@supports not (object-fit: cover) {
    .video-bg {
        width: 100%;
        height: 100%;
    }
}
