/**
 * Hero Carousel Styles
 */

/* Carousel container */
#hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Carousel items */
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Ensure images cover the container properly */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
