﻿/* Hero CSS */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 400px;
    /* Mobile height */
}

@media (min-width: 768px) {
    .hero-slider {
        height: 500px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-content {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}
