/* Carousel Specific Styles */
.carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay to make text pop */
    z-index: 0;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    z-index: 1;
}

/* Make sure the hero section doesn't have internal padding overriding h-100 */
.content-carousel {
    padding: 0 !important;
}
