:root {
    /* Premium Minimal Wine Theme - Elegant Edition */
    --color-primary: #d40000;
    /* Slightly deeper, more elegant red */
    --color-bg: #030000;
    /* Almost pure black, hint of red */
    --color-grape: #110005;
    /* Barely visible grape shade */
    --color-text: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

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

body {
    /* 
       Video Background Setup
       Fallback color provided while video loads.
    */
    background-color: #050002;

    color: var(--color-text);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
    /* No scrolling for this minimal poster look */
    -webkit-font-smoothing: antialiased;
}

/* Video Styling */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    /* Behind everything */
    object-fit: cover;
    opacity: 1.0;
    /* Full brightness */
}

/* Dark Overlay to ensure logo pops against busy video */
/* REMOVED - No overlay applied
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}
*/

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 
   Elegance Upgrade:
   - Much smaller logos
   - More breathing room
   - Slower animations
*/

/* Main Logo */
.hero-logo-main {
    width: 350px;
    /* Restricted width to match original design */
    max-width: 85vw;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
    animation: float 8s ease-in-out infinite;
    opacity: 0.95;
    padding-bottom: 20px;
}



.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Refined Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    /* Less movement */
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.reveal {
    animation: fadeInSlide 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    /* Slower, smoother easing */
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.5s;
}