/* Hero Carousel Styles - Frosted Glass Effect */
.hero-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* No blur or frosted effect - clean display */

/* Carousel indicators */
.hero-carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-carousel-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-carousel-indicator.active {
    background: #E50914;
    width: 60px;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
}

.hero-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Ensure hero content stays on top */
.hero-content-wrapper {
    position: relative;
    z-index: 15;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-carousel-indicators {
        bottom: 20px;
    }
    
    .hero-carousel-indicator {
        width: 30px;
        height: 3px;
    }
    
    .hero-carousel-indicator.active {
        width: 45px;
    }
}
