/* Slideshow System Styles */

/* Main Slideshow Container */
.slideshow {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.slide.active {
    opacity: 1;
}

/* First slide should appear immediately without transition delay */
.slide[data-index="0"].active {
    transition: none;
    opacity: 1;
}

/* Ensure first slide is visible immediately on page load */
.slide[data-index="0"] {
    opacity: 0;
}

.slide[data-index="0"].active {
    opacity: 1;
    transition: none;
}

/* Photograph URLs live in host/slideshow.js (see AGENT_brand-spec-for-build.md). Do not paint a navy slide here. */

/* Overlay for better text readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide[data-index="0"]::before {
    background: none;
}
