/* Hero Slideshow Styles */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    min-height: 80vh;
    /* Default for smaller devices */
    display: flex;
    align-items: center;
}

/* Make hero section taller on wider screens */
@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
    }
}

.hero-slideshow {
    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;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

/* Special handling for landscape images */
.hero-slide.landscape {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--bg-dark, #1a1a1a);
    /* Dark background for letterboxing */
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
