/* section hero */
    .caroussel_container{
        position: relative;
        width: 100%;
        height: 400px;
        background: var(--light-black);
    }

    .caroussel_container .image{
        width: 100%;
        height: 100%;
        display: none;
    }

    .caroussel_container .image.active {
        display: block;
    }

    .caroussel_container .img_bg_caroussel{
        position: absolute;
        top: 0; left: 0;
        overflow: hidden;
        object-fit: cover;
    }
    .caroussel_container .button{
        position: absolute;
        bottom: 35px; right: 0;
        display: flex;
        gap: 8px;
        z-index: 100;
        padding: 16px;
    }

    .caroussel_container .button div{
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 25px;
        vertical-align: middle;
        align-items: center;
        cursor: pointer;
        color: white;
        background: var(--blue);
        user-select: none;
        display: none;
    }

    .caroussel_container .button div:hover{
        background: var(--red);
        border: 1px solid var(--light-white);
    }

    .dots{
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
        display: none;
    }

    .dot{
        cursor: pointer;
        padding: .3rem;
        border-radius: 50%;
        background: #bbb;
        display: inline-block;
        margin: 0 2px;
    }

    .caroussel_container .active, .dot:hover{
        background: var(--blue);
    }

    /* titre et texte */
        .bg_container_text{
            position: absolute;
            left: 0; bottom: 0;
            width: 100%; height: 300px;
            z-index: 1;
            background: linear-gradient(to bottom, transparent, var(--black));
        }
        
        .container_text{
            position: absolute;
            left: 0; bottom: 0;
            width: 100%; height: max-content;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            z-index: 10;
        }

        .container_text h1, .container_text p{
            width: 80%;
        }                

        .container_text strong{
            color: var(--white);
            font-size: 16px;
            text-transform: capitalize;
            background: var(--light-white);
            border: 1px solid var(--white);
            padding: 5px 10px;
            border-radius: 16px;
        }

        .container_text h1{
            font-size: 35px;
            text-transform: uppercase;
            font-weight: 900;
            color: var(--white);
            margin: 10px 0;
        }

        .container_text p{
            color: var(--white);
            font-size: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* center */
            .container_text.center{
                align-items: center;
            }

            .container_text.center h1, .container_text.center p{
                text-align: center;
            }
            
            .container_text.center .flexBtn{
                justify-content: center;
            }
        /* center */

        /* left */
            .container_text.left{
                align-items: flex-start;
            }

            .container_text.left h1, .container_text.left p{
                text-align: left;
            }

            .container_text.left .flexBtn{
                justify-content: flex-start;
            }
        /* left */

        /* right */
            .container_text.right{
                align-items: flex-end;
            }

            .container_text.right h1, .container_text.right p{
                text-align: right;
            }

            .container_text.right .flexBtn{
                justify-content: flex-end;
            }
        /* right */
        
        /* btn caroussl */
            .btn_caroussel{
                display: flex;
                align-items: center;
                gap: 4px;
                color: var(--white);
                margin-top: 8px;
                font-size: 20px;
                i{
                    font-size: 20px;
                    transform: translatey(3px) rotate(180deg);
                }
            }
        /* btn caroussl */
    /* titre et texte */
    
    
    /*  ANIMATIONS POU TÈKS HERO  */
        /* Animasyon pou chak eleman tèks */
            .container_text strong {
                animation: slideInFromTop 0.6s ease-out;
                animation-fill-mode: both;
            }
            
            .container_text h1 {
                animation: slideInFromLeft 0.6s ease-out 0.2s;
                animation-fill-mode: both;
            }
            
            .container_text p {
                animation: slideInFromRight 0.6s ease-out 0.4s;
                animation-fill-mode: both;
            }
            
            .container_text .btn_caroussel {
                animation: fadeInUp 0.6s ease-out 0.6s;
                animation-fill-mode: both;
            }
        /* Animasyon pou chak eleman tèks */
        
        /* Animasyon diferan */
            @keyframes slideInFromTop {
                from {
                    opacity: 0;
                    transform: translateY(-50px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            @keyframes slideInFromLeft {
                from {
                    opacity: 0;
                    transform: translateX(-80px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
            
            @keyframes slideInFromRight {
                from {
                    opacity: 0;
                    transform: translateX(80px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(50px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        /* Animasyon diferan */
        
        /* Efè typewriter pou tit la (si ou vle) */
            @keyframes typing {
                from {
                    width: 0;
                }
                to {
                    width: 100%;
                }
            }
            
            @keyframes blinkCursor {
                from, to {
                    border-right-color: transparent;
                }
                50% {
                    border-right-color: var(--blue);
                }
            }
        /* Efè typewriter pou tit la (si ou vle) */
        
        /* Efè shine pou tèks la */
            .container_text h1 {
                position: relative;
                background: linear-gradient(120deg, 
                    var(--white) 0%, 
                    var(--white) 40%, 
                    var(--blue) 50%, 
                    var(--white) 60%, 
                    var(--white) 100%);
                background-size: 200% auto;
                background-clip: text;
                -webkit-background-clip: text;
                color: transparent;
                animation: shine 3s linear infinite;
            }
            
            @keyframes shine {
                to {
                    background-position: 200% center;
                }
            }
        /* Efè shine pou tèks la */
        
        /* Animasyon floating pou bouton an */
            .btn_caroussel {
                animation: float 2s ease-in-out infinite;
                position: relative;
            }
            
            @keyframes float {
                0%, 100% {
                    transform: translateY(0px);
                }
                50% {
                    transform: translateY(-5px);
                }
            }
        /* Animasyon floating pou bouton an */
        
        /* Efè hover pou tèks yo */
            .container_text strong:hover {
                animation: pulse 0.5s ease;
                transform: scale(1.05);
            }
            
            @keyframes pulse {
                0%, 100% {
                    transform: scale(1);
                }
                50% {
                    transform: scale(1.05);
                }
            }
            
            /* Animasyon lè chak slide chanje */
            .image.active .container_text strong {
                animation: bounceIn 0.6s ease-out;
            }
            
            .image.active .container_text h1 {
                animation: zoomInWord 0.6s ease-out 0.2s both;
            }
            
            .image.active .container_text p {
                animation: fadeInSlideUp 0.6s ease-out 0.4s both;
            }
            
            .image.active .container_text .btn_caroussel {
                animation: rubberBand 0.8s ease-out 0.6s both;
            }
            
            @keyframes bounceIn {
                0% {
                    opacity: 0;
                    transform: scale(0.3);
                }
                50% {
                    opacity: 1;
                    transform: scale(1.05);
                }
                70% {
                    transform: scale(0.9);
                }
                100% {
                    transform: scale(1);
                }
            }
            
            @keyframes zoomInWord {
                from {
                    opacity: 0;
                    transform: scale(0.5);
                    letter-spacing: -5px;
                }
                to {
                    opacity: 1;
                    transform: scale(1);
                    letter-spacing: normal;
                }
            }
            
            @keyframes fadeInSlideUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            @keyframes rubberBand {
                0% {
                    transform: scale(1);
                }
                30% {
                    transform: scale(1.25);
                }
                40% {
                    transform: scale(0.75);
                }
                50% {
                    transform: scale(1.15);
                }
                65% {
                    transform: scale(0.95);
                }
                75% {
                    transform: scale(1.05);
                }
                100% {
                    transform: scale(1);
                }
            }
        /* Efè hover pou tèks yo */
        
        /* Efè text reveal line-by-line */
            @keyframes revealLine {
                from {
                    opacity: 0;
                    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
                }
                to {
                    opacity: 1;
                    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                }
            }
            
            .container_text p {
                animation: revealLine 0.8s ease-out 0.4s both;
            }
        /* Efè text reveal line-by-line */
        
        /* Efè glisman pou chak lèt nan tit la */
            .container_text h1 {
                display: inline-block;
                overflow: hidden;
            }
            
            .container_text h1 span {
                display: inline-block;
                animation: letterPop 0.4s ease-out backwards;
            }
            
            @keyframes letterPop {
                from {
                    opacity: 0;
                    transform: translateY(20px) rotate(10deg);
                }
                to {
                    opacity: 1;
                    transform: translateY(0) rotate(0);
                }
            }
        /* Efè glisman pou chak lèt nan tit la */
        
        /* Efè lumineux sou tèks */
            .container_text h1::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, 
                    transparent, 
                    rgba(255,255,255,0.3), 
                    transparent);
                animation: lightSweep 3s infinite;
                pointer-events: none;
            }
            
            @keyframes lightSweep {
                0% {
                    left: -100%;
                }
                20%, 100% {
                    left: 100%;
                }
            }
        /* Efè lumineux sou tèks */
        
        /* Efè pour le bouton lire plus */
            .btn_caroussel {
                position: relative;
                overflow: hidden;
                transition: all 0.4s ease;
            }
            
            .btn_caroussel:before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, 
                    transparent, 
                    rgba(255,255,255,0.3), 
                    transparent);
                transition: left 0.5s ease;
            }
            
            .btn_caroussel:hover:before {
                left: 100%;
            }
            
            .btn_caroussel i {
                transition: transform 0.3s ease;
            }
            
            .btn_caroussel:hover i {
                transform: translateX(-8px) rotate(180deg);
            }
        /* Efè pour le bouton lire plus */
        
        /* Animasyon background gradient animé */
            .caroussel_container {
                position: relative;
                overflow: hidden;
            }
            
            .caroussel_container::before {
                animation: pulse 2s ease-in-out infinite;
            }
        /* Animasyon background gradient animé */
        
        /* Animasyon pou responsive */
            @media (max-width: 768px) {
                .container_text h1 {
                    font-size: 28px;
                }
                
                .container_text p {
                    font-size: 16px;
                }
            }
            
            @media (max-width: 480px) {
                .container_text h1 {
                    font-size: 22px;
                }
                
                .container_text p {
                    font-size: 14px;
                }
            }
        /* Animasyon pou responsive */
        
        /* Animasyon pou btn_caroussel */
            .btn_caroussel {
                position: relative;
                overflow: hidden;
            }
            
            .btn_caroussel::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                transition: left 0.5s ease;
            }
            
            .btn_caroussel:hover::before {
                left: 100%;
            }
            
            /* Animasyon loading pou carousel */
                @keyframes shimmer {
                    0% {
                        background-position: -1000px 0;
                    }
                    100% {
                        background-position: 1000px 0;
                    }
                }
                
                .caroussel_container.loading {
                    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
                    background-size: 1000px 100%;
                    animation: shimmer 2s infinite;
                }
            /* Animasyon loading pou carousel */
            
            /* Animasyon background gradient pou carousel */
                .caroussel_container {
                    position: relative;
                    overflow: hidden;
                }
                
                .caroussel_container::after {
                    content: '';
                    position: absolute;
                    top: -50%;
                    left: -50%;
                    width: 200%;
                    height: 200%;
                    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
                    opacity: 0;
                    transition: opacity 0.5s ease;
                    pointer-events: none;
                    z-index: 5;
                }
                
                .caroussel_container:hover::after {
                    opacity: 1;
                    animation: rotate 10s linear infinite;
                }
                
                @keyframes rotate {
                    from {
                        transform: rotate(0deg);
                    }
                    to {
                        transform: rotate(360deg);
                    }
                }
            /* Animasyon background gradient pou carousel */
            
            /* Animasyon pour les images du carousel */
                .caroussel_container .image {
                    transition: transform 0.5s ease;
                }
                
                .caroussel_container .image.active {
                    animation: zoomIn 0.6s ease-out;
                }
            /* Animasyon pour les images du carousel */
            
            /* Effet parallaxe sur les images */
                .img_bg_caroussel {
                    transition: transform 0.3s ease;
                }
                
                .caroussel_container:hover .img_bg_caroussel {
                    transform: scale(1.05);
                }
            /* Effet parallaxe sur les images */
            
            /* Animasyon dots */
                .dot {
                    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                }
                
                .dot.active {
                    animation: glowPulse 1s infinite;
                }
            /* Animasyon dots */
    /*  ANIMATIONS POU TÈKS HERO  */
/* section hero */

/* section newsletter */
    .newsletter{
        background: var(--blue);
        padding: 48px 80px;
    }
    
    .container_newsletter{
        max-width: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0px auto;
    }

    .titre_newsletter{
        font-size: 30px;
        margin: 0 auto;
        text-align: center;
        font-weight: bolder;
        color: var(--white);
    }

    .newsletter .form_newsletter{
        position: relative;
        width: 100%;
        display: flex;
        margin: 16px 0;
        border: none;
    }

    .newsletter .form_newsletter input{
        width: 100%;
        padding: 20px;
        border-radius: 32px;
        outline: none;
    }

    .newsletter .form_newsletter button{
        position: absolute;
        right: 4px; top: 50%;
        transform: translateY(-50%);
        width: 120px;
        border: none;
        padding: 16px;
        border-radius: 32px;
        background: var(--red);
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        cursor: pointer;
    }
    
    .newsletter .form_newsletter button:hover{
        background: var(--blue);
    }
    
    .newsletter_text{
        font-size: 18px;
        text-align: center;
        color: var(--white);
    }
/* section newsletter */

/* section evenement */
    .box_evenement{        
        display: flex;
        gap: 25px;
        overflow-x: auto;
        width:  100%;
        height: max-content;
        margin: 0 auto;
        margin-top: 8px;
        scroll-behavior: smooth;
        position: relative;
        anchor-name: --caroussel;
        scroll-snap-type: x mandatory;                    
        scroll-marker-group: after;
        padding: 16px 0;
    }

    .box_evenement::scroll-marker-group{
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .evenement::scroll-marker{
        content: '';
        width: 8px; height: 8px;
        background: var(--light-blue);
        border-radius: 50%;
    }

    .evenement::scroll-marker:target-current{
        background: var(--blue);
    }

    .box_evenement::-webkit-scrollbar{
        display: none;
    }

    .box_evenement::scroll-button(right), .box_evenement::scroll-button(left){
        border: none;
        width: 30px; height: 30px;
        border-radius: 50%;
        color: var(--white);
        cursor: pointer;
        position: fixed;
        position-anchor: --caroussel;
    }

    .box_evenement::scroll-button(right){                    
        content: "\21D2";
        position-area: right center;
        translate: -50%;
        background-color: var(--blue);
    }

    .box_evenement::scroll-button(left){                    
        content: "\21D0";
        position-area: left center;
        translate: 50%;
        background-color: var(--red);
    }

    .box_evenement::scroll-button(right):disabled, .box_evenement::scroll-button(left):disabled{
        opacity: 0.5;
        cursor: auto;
    }

    .evenement{
        scroll-snap-align: start;
        position: relative;
        flex: 0 0 350px;
        box-shadow: 0 0 8px var(--light-black);
        padding: 16px;
    }
    
    .box_img_evenement{
        width: 100%;
        height: 150px;
    }
    
    .box_img_evenement img{
        width: 100%; height: 100%;
        object-fit: cover;
    }
    
    .info_evenement {
        padding: 8px;
        padding-bottom: 0;
    }
    
    .titre_evenement {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 600;
        margin: 8px auto;
        text-align: justify;
    }
    
    .description_evenement {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 8px auto;
        color: var(--gray);
        text-align: justify;
    }
    
    .evenement:nth-child(even) .flexBtn .btn1{
        background: var(--red);
    }
/* section evenement */


/* responsive */
    /* section hero */
        @media screen and (max-width: 800px){
            .container_text{
                padding: 32px 48px;
            }
            
            .container_text h1, .container_text p{
                width: 90%;
            }
            
            .container_text strong{
                font-size: 15px;
            }
            
            .container_text p{
                font-size: 17px;
            }
            
            .btn_caroussel, .btn_caroussel i{
                font-size: 18px;
            }
        }
        
        @media screen and (max-width: 700px) {
            .container_text{
                padding: 16px 32px;
            }
            
            .container_text h1, .container_text p{
                width: 95%;
            }
            
            .container_text strong{
                font-size: 14px;
            }
            
            .container_text h1{
                font-size: 30px;
            }
            
            .container_text p{
                font-size: 16px;
            }
            
            .btn_caroussel, .btn_caroussel i{
                font-size: 16px;
            }
        }
        
        @media screen and (max-width: 500px) {
            .container_text{
                padding: 16px;
            }
            
            .caroussel_container .button{
                bottom: 8px;
            }
        }
        
        @media screen and (max-width: 430px) {
            .container_text h1{
                font-size: 25px;
            }
        }
        
        @media screen and (max-width: 400px) {
            .caroussel_container, .caroussel_container:before{
                height: 320px;
            }
            
            .caroussel_container .button{
                display: none;
            }
        }
        
        @media screen and (max-width: 370px) {
            .container_text strong{
                font-size: 13px;
            }
            
            .container_text h1{
                font-size: 20px;
            }
            
            .container_text p{
                font-size: 14px;
            }
            
            .btn_caroussel, .btn_caroussel i{
                font-size: 14px;
            }
        }
    /* section hero */

    /* section newsletter */
        @media screen and (max-width: 700px){
            .newsletter{
                padding: 48px;
            }
        }
        
        @media screen and (max-width: 600px){
            .newsletter{
                padding: 32px;
            }
            
            .titre_newsletter{
                font-size: 22px;
            }
            
            .newsletter .form_newsletter input{
                padding: 16px;
            }
            
            .newsletter .form_newsletter button{
                padding: 14px;
                font-size: 16px;
            }
            
            .newsletter_text{
                font-size: 16px;
            }
        }
        
        @media screen and (max-width: 450px){
            .newsletter{
                padding: 32px 16px;
            }
        }
    /* section newsletter */
/* responsive */