#projectCarousel {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

#projectCarousel .carousel-item img {
    object-fit: contain;
    max-height: 500px;
    width: 100%;
}

#projectCarousel .carousel-caption {
    background-color: rgba(0,0,0,0.6);
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

#projectCarousel .carousel-caption h5 {
    color: #ffc107;
}

#projectCarousel .carousel-caption p {
    color: #fff;
}

/* Responsive captions */
@media (max-width: 767px) {
    #projectCarousel .carousel-caption {
        display: block; /* visible sur petits écrans */
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    #projectCarousel .carousel-item img {
        max-height: 300px;
    }
}
