/* Full width carousel section */
.carousel-full {
    margin-top: 56px; /* offset for fixed navbar (56px + 10px spacing) */
    width: 100%;
}

/* Ensure carousel fits container */
.carousel-full .carousel-inner {
    width: 100%;
    height: auto;
}

/* Images should always fill */
.carousel-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Mobile height */
@media(max-width:767px) {
    .carousel-full .carousel-inner {
        height: 180px;
    }
}

/* Tablet height */
@media(min-width:768px) and (max-width:991px) {
    .carousel-full .carousel-inner {
        height: 200px;
    }
}

/* Desktop height */
@media(min-width:992px) {
    .carousel-full .carousel-inner {
        height: 220px;
    }
}
