/* Style pour la section du slider */
.slider {
    position: relative;
}

/* Style des images dans les slides */
.carousel-item img {
    height: 600px;
    object-fit: cover;
}

/* Centrage vertical + alignement gauche de la légende */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 25px 30px;
    left: 12%;
    right: auto;
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    max-width: 600px;
}

/* Titre du slider */
.carousel-caption h5 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Description du slider */
.carousel-caption p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Contrôles du carousel (précédent et suivant) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #2b01c2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Amélioration du responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }

    .carousel-caption {
        left: 10px;
        right: 10px;
        bottom: 20%;
        transform: translateY(0);
        padding: 15px;
        display: block !important;
        z-index: 10;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .carousel-caption h5 {
        font-size: 22px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}
