/**
 * Hero Banner Styles
 * Custom CSS carousel to replace Owl Carousel
 */

.hero-banner {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: #000;
    z-index: -1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-slide .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner {
        height: 570px;
    }
}
