/* =====================================================
   LANDING PAGE STYLES
   ===================================================== */

#landing {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

/* =====================================================
   VIDEO BACKGROUND - FIXED FOR ENTIRE PAGE
   ===================================================== */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* =====================================================
   ROTATING CIRCULAR LOGO
   ===================================================== */
.rotating-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.rotating-logo {
    width: clamp(300px, 40vw, 600px);
    height: auto;
    animation: rotate-logo 60s linear infinite;
    filter: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(1015%) hue-rotate(42deg) brightness(98%) contrast(91%) drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

@keyframes rotate-logo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   LANDING PAGE TEXT CONTENT
   ===================================================== */
.landing-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.landing-text {
    position: absolute;
    color: var(--black);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Top Left - Title */
.landing-text.top-left {
    top: clamp(2rem, 5vh, 4rem);
    left: clamp(2rem, 5vw, 4rem);
}

.landing-text.top-left h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Top Right - Date */
.landing-text.top-right {
    top: clamp(2rem, 5vh, 4rem);
    right: clamp(2rem, 5vw, 4rem);
    text-align: right;
}

.landing-text.top-right .date {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    line-height: 1.1;
}

/* Bottom Left - Venue */
.landing-text.bottom-left {
    bottom: clamp(2rem, 5vh, 4rem);
    left: clamp(2rem, 5vw, 4rem);
}

.landing-text.bottom-left .venue {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.2;
}

/* Bottom Right - Vertical Festival Name */
.landing-text.bottom-right-vertical {
    bottom: clamp(2rem, 5vh, 4rem);
    right: clamp(2rem, 5vw, 4rem);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.landing-text.bottom-right-vertical .festival-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    letter-spacing: 0.1em;
}

/* Bottom Center - Subtitle */
.landing-text.bottom-center {
    bottom: clamp(2rem, 5vh, 4rem);
    left: calc(50% + 30px + 25rem);
    transform: translateX(-50%);
    text-align: center;
}

.landing-text.bottom-center .subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* =====================================================
   SCROLL INDICATOR
   ===================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--black);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--black);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* =====================================================
   ANIMATED GRADIENT BACKGROUND (fallback if WebGL fails)
   ===================================================== */
/* Removed - using body's fixed gradient instead */
