/* Banner Styles */
.banner {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    position: relative;
    max-height: 500px;
}

.banner-carousel {
    width: 100%;
    position: relative;
}

.banner-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 500px;
}

.banner-slide a {
    display: block;
    width: 100%;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Slick Carousel Custom Styles */
.banner-carousel .slick-dots {
    bottom: 20px;
    z-index: 10;
}

.banner-carousel .slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.banner-carousel .slick-dots li.slick-active button:before {
    color: #d4af37;
    opacity: 1;
}

.banner-carousel .slick-prev,
.banner-carousel .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-carousel .slick-prev:hover,
.banner-carousel .slick-next:hover {
    background: rgba(212, 175, 55, 1);
}

.banner-carousel .slick-prev {
    left: 20px;
}

.banner-carousel .slick-next {
    right: 20px;
}

.banner-carousel .slick-prev:before,
.banner-carousel .slick-next:before {
    font-size: 30px;
    color: #000;
    opacity: 1;
}

/* Loading Animation */
.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .banner {
        max-height: 400px;
    }
    
    .banner-slide {
        max-height: 400px;
    }
    
    .banner-slide img {
        max-height: 400px;
    }
}

@media (max-width: 992px) {
    .banner {
        max-height: 350px;
    }
    
    .banner-slide {
        max-height: 350px;
    }
    
    .banner-slide img {
        max-height: 350px;
    }
    
    .banner-carousel .slick-prev,
    .banner-carousel .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .banner-carousel .slick-prev:before,
    .banner-carousel .slick-next:before {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .banner {
        max-height: 280px;
    }
    
    .banner-slide {
        max-height: 280px;
    }
    
    .banner-slide img {
        max-height: 280px;
    }
    
    .banner-carousel .slick-prev {
        left: 10px;
    }
    
    .banner-carousel .slick-next {
        right: 10px;
    }
    
    .banner-carousel .slick-prev,
    .banner-carousel .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .banner-carousel .slick-prev:before,
    .banner-carousel .slick-next:before {
        font-size: 20px;
    }
    
    .banner-carousel .slick-dots {
        bottom: 10px;
    }
    
    .banner-carousel .slick-dots li button:before {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .banner {
        max-height: 200px;
    }
    
    .banner-slide {
        max-height: 200px;
    }
    
    .banner-slide img {
        max-height: 200px;
    }
}
