/* ========== BANNER SLIDER STYLES ========== */

.banner-slider-container {
    position: relative;
    width: 1600 px;
    aspect-ratio: 16 / 4.75;
    overflow: hidden;
}



.banner-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .banner-slider {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .banner-slider {
        height: 600px;
    }
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-image {
    width: 1600 px;
    height: 475 px;
    object-fit: cover;
}



.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    z-index: 2;
}

.banner-title {
    color: #5eead4;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .banner-title {
        font-size: 2.5rem;
    }
}

/* Navigation Dots */
.banner-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(94, 234, 212, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot:hover {
    background-color: rgba(94, 234, 212, 0.7);
    transform: scale(1.2);
}

.banner-dot.active {
    background-color: #5eead4;
    border-color: #5eead4;
    box-shadow: 0 0 10px rgba(94, 234, 212, 0.8);
}

/* Hover pause effect */
.banner-slider:hover .banner-slide {
    animation-play-state: paused;
}