#carousel-home {
    max-width: 1080px;
    margin: 0 auto;
}
.category-link {
    margin-right: 10px;
}

div.carousel-item p.fs-1.text-light {
    margin-bottom: 200px;
}

div.carousel-item p.text-light {
    
    font-family: 'Shrikhand', serif; 
    font-weight: 400;
    color: #FFD700; /* Doré brillant */
    text-shadow: 
        0 0 10px rgba(255, 223, 0, 0.8), /* Lueur principale */
        0 0 20px rgba(128, 112, 11, 0.6), /* Lueur secondaire */
        1px 1px 5px rgb(104, 86, 14);  /* Ombre douce */
    animation: glow 2s infinite alternate; /* Ajout d'un effet d'animation */
}


@keyframes glow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 223, 0, 0.8), 
            0 0 20px rgba(255, 223, 0, 0.6), 
            1px 1px 5px rgb(136, 111, 12);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 223, 0, 1), 
            0 0 30px rgba(119, 105, 13, 0.9), 
            2px 2px 10px rgb(136, 111, 12);
    }
}


/* Ajustement pour petits écrans */
@media (max-width: 768px) {
    div.carousel-item p.text-light {
        font-size: 0.5rem;
        font-weight: 200;
        
    }

    div.carousel-item p.fs-1.text-light {
        margin-bottom: 20px; /* Ajustement spécifique au titre */
    }
}