/* ===== CLEAN STATIC IMAGE SLIDESHOW ===== */
.clean-slideshow {
    position: relative;
    width: 100%;
    height: 480px; /* Keep narrow banner height */
    overflow: hidden;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    z-index: 2;
}

/* Clean Image Display - No Filters! */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* NO filters, NO overlays, NO effects - just clean images */
}

/* Simple Navigation Arrows - Minimal and Clean */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide-prev {
    left: 15px;
}

.slide-next {
    right: 15px;
}

/* Simple Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Responsive Design - Keep it Simple */
@media (max-width: 1200px) {
    .clean-slideshow {
        height: 260px;
    }
}

@media (max-width: 992px) {
    .clean-slideshow {
        height: 240px;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .clean-slideshow {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .slide-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slide-prev {
        left: 10px;
    }
    
    .slide-next {
        right: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .clean-slideshow {
        height: 180px;
    }
    
    .slideshow-container {
        border-radius: 8px;
    }
}

/* Container Width Matching */
.clean-slideshow .slideshow-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Ensure crisp image rendering */
.slide-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
}