/* Hero Carousel Styles */

.hero-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hero-carousel-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Carousel indicators styling */
.carousel-indicators {
    bottom: 15px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-color);
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

/* Carousel controls hidden - arrows removed per user request */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Carousel caption styling */
.carousel-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-caption h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-carousel-img {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-carousel-img {
        height: 320px;
    }
}

/* Large desktop adjustments */
@media (min-width: 1200px) {
    .hero-carousel-img {
        height: 450px;
    }
}