/**
 * Hero Background Slideshow Styles
 */

#home-hero {
    position: relative;
    overflow: hidden;
}

.hero-slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

/* Overlay on top of slideshow */
.hero-slideshow-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E86709;
    opacity: 0.8;
    z-index: 1;
}

/* Ensure hero content stays above the slideshow and overlay */
#home-hero > *:not(.hero-slideshow-container) {
    position: relative;
    z-index: 2;
}
