/* --- Left Panel Content (Static Image) --- */
.static-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.static-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.left-panel-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.left-footer-text {
    font-family: var(--font-legan);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFFFFF;
    margin: 0;
}

/* --- Right Panel Desktop Hero (Slideshow/Video) --- */
.hero-section.desktop-only {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Ensure full width of parent */
}

/* Mobile Hero Slideshow styles */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}



.hero-section.desktop-only::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    animation: bounce 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);
    }
}

/* --- Hero Typography --- */
.hero-subtitle {
    font-family: var(--font-legan);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 17px;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-candlefish);
    font-size: 40px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.hero-date {
    font-family: var(--font-legan);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 17px;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
}