/* section hero */
    .caroussel_container{
        position: relative;
        width: 100%;
        height: 350px;
        background: var(--light-black);
        border-radius: 16px;
    }

    .caroussel_container:before{
        content: '';
        width: 100%;
        height: 350px;
        position: absolute;
        top: 0; left: 0;
        background: var(--black);
        opacity: .5;
        z-index: 1;
        border-radius: 16px;
    }

    .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;
        border-radius: 16px;
        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;
        border-radius: 5px;
        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 */
        .container_text{
            position: relative;
            z-index: 10;
            width: 100%; height: 100%;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .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 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);
    }
}

/* 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è 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;
    }
}

/* 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);
    }
}

/* 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è 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è 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è 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è 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);
}

/* Animasyon background gradient animé */
.caroussel_container {
    position: relative;
    overflow: hidden;
}

.caroussel_container::before {
    animation: pulse 2s ease-in-out infinite;
}

/* 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;
    }
}
/* section hero */

/* section newsletter */
    .newsletter{
        background: var(--black-bg);
        padding: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        max-width: 100%;
        margin: 0px auto;
        border-radius: 16px;
    }

    .titre_newsletter, .titre_newsletter b{
        font-size: 30px;
        font-weight: bolder;
        color: var(--white);
    }
    
    .titre_newsletter b{
        -webkit-text-stroke: 0.5px var(--white);
    }

    .newsletter_text{
        width: 60%;
        margin: .8rem auto;
        font-size: 18px;
        text-align: center;
        color: var(--white);
    }

    .newsletter .form_newsletter{
        position: relative;
        width: 30rem;
        display: flex;
    }

    .newsletter .form_newsletter input{
        width: 100%;
        padding: .6rem;
        border: var(--border);
        border-radius: .5rem 0 0 .5rem;
        font-size: 15px;
        outline: none;
    }

    .newsletter .form_newsletter button{
        width: 3.5rem;
        border: none;
        border-left: 3px solid var(--black);
        border-radius: 0 .5rem .5rem 0;
        background: var(--blue);
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        i{
            color: var(--white);
        }
    }
    
    .newsletter .form_newsletter button:hover{
        background: var(--red);
    }
/* section newsletter */

/* section podcast */
    .container_podcasts{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 32px;
    }

    .content_podcast{
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 8px;
    }
    
    .content_podcast:before{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0; left: 0;
        background: var(--black);
        opacity: .3;
        z-index: 1;
        border-radius: 8px;
    }

    .content_podcast img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .box_icon_podcast{
        width: 40px; height: 40px;
        border-radius: 50%;
        background: var(--red);
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%,-50%);
        z-index: 100;
        i{
            color: var(--white);
            font-size: 25px;
        }
    }
    
    .box_icon_podcast:hover{
        background: var(--blue);
        cursor: pointer;
    }
    
    .titre_podcast{
        position: absolute;
        left: 0; bottom: 0;
        z-index: 10;
        color: var(--white);
        padding: 16px;
        background: linear-gradient(to bottom, transparent, var(--black));
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .titre_podcast h3{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 500;
    }
/* section podcast */

/* section archive */
    .container_archives{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px,1fr));
        gap: 16px;
        margin-top: 32px;
    }
    
    .content_archive{
        background: var(--light-gray);
        color: var(--black);
        padding: 8px 16px;
        border-radius: 8px;
        text-align: center;
    }
    
    .content_archive:nth-child(even):hover{
        background: var(--red);
        color: var(--white);
    }
    
    .content_archive:nth-child(odd):hover{
        background: var(--blue);
        color: var(--white);
    }
/* section archive */

/* section partenaire */
    .boxpartenaire{        
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 5px;
        width:  100%;
        margin: 0 auto;
        margin-top: 16px;
        scroll-behavior: smooth;
        position: relative;
        anchor-name: --caroussel;
        scroll-snap-type: x mandatory;                    
        scroll-marker-group: after;
    }

    .boxpartenaire::scroll-marker-group{
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .partenaire::scroll-marker{
        content: '';
        width: 8px; height: 8px;
        background: var(--light-blue);
        border-radius: 50%;
    }

    .partenaire::scroll-marker:target-current{
        background: var(--blue);
    }

    .boxpartenaire::-webkit-scrollbar{
        display: none;
    }

    .boxpartenaire::scroll-button(right), .boxpartenaire::scroll-button(left){
        border: none;
        background-color: var(--red);
        width: 30px; height: 30px;
        border-radius: 50%;
        color: var(--white);
        cursor: pointer;
        position: fixed;
        position-anchor: --caroussel;
    }

    .boxpartenaire::scroll-button(right){                    
        content: "\21D2";
        position-area: right center;
        translate: -50%;
    }

    .boxpartenaire::scroll-button(left){                    
        content: "\21D0";
        position-area: left center;
        translate: 50%;
    }

    .boxpartenaire::scroll-button(right):disabled, .boxpartenaire::scroll-button(left):disabled{
        opacity: 0.5;
        cursor: auto;
    }

    .partenaire{
        scroll-snap-align: start;
        position: relative;
        flex: 0 0 auto;
    }

    .boxImgpartenaire{
        height: 100px;
        border: 1px solid var(--light-gray);
        border-radius: 8px;
        padding: 8px;
        margin-bottom: 8px;
    }

    .boxImgpartenaire img{
        object-fit: contain;
    }

    .boxpartenaire h3{
        text-align: center;
        font-weight: 500;
    }
/* section partenaire */


/* 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: 950px){
            .newsletter_text{
                width: 80%;
            }
        }
        
        @media screen and (max-width: 800px){
            .newsletter .form_newsletter{
                width: 25rem;
            }
        }
    
        @media screen and (max-width: 730px){
            .titre_newsletter{
                font-size: 25px;
            }
            
            .newsletter_text{
                font-size: 16px;
            }
        }
    
        @media screen and (max-width: 610px){
            .titre_newsletter{
                font-size: 23px;
            }
            
            .newsletter_text{
                font-size: 15px;
            }               
    
            .newsletter form input{
                padding: .4rem;
                font-size: 15px;
            }
    
            .newsletter form button{
                padding: .47rem;
                font-size: 18px;
            }
        }
    
        @media screen and (max-width: 550px){
            .newsletter{
                padding: 1.5rem 1rem;
            }
            
            .newsletter_text{
                width: 100%;
                margin: .7rem auto;
            }
    
            .newsletter .form_newsletter{
                width: 20rem;
            }
        }
    
        @media screen and (max-width: 480px) {
            .titre_newsletter{
                font-size: 20px;
            }
    
            .newsletter_text{
                font-size: 14px;
            }
    
            .newsletter form input{
                padding: .3rem;
                font-size: 14px;
            }
    
            .newsletter form button{
                padding: .37rem;
                font-size: 16px;
            }
        }
    
        @media screen and (max-width: 450px) {
            .newsletter form{
                width: 20rem;
            }
        }
        
        @media screen and (max-width: 420px){
            .newsletter .form_newsletter{
                width: 18rem;
            }
        }
        
        @media screen and (max-width: 400px){
            .newsletter .form_newsletter{
                width: 17rem;
            }
        }
    
        @media screen and (max-width: 380px){    
            .titre_newsletter{
                font-size: 17px;
            }
    
            .newsletter_text{
                font-size: 13px;
            }
            
            .newsletter .form_newsletter{
                width: 15rem;
            }
    
            .newsletter form input{
                padding: .3rem;
                font-size: 13px;
            }
    
            .newsletter form button{
                padding: .4rem;
                font-size: 15px;
            }
            
            .newsletter{
                width: 95%;
            }
        }
    /* section newsletter */
/* responsive */

/* ==================== ANIMATIONS SCROLL ==================== */

/* Animasyon debaz */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@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 glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Klas animasyon scroll */
.scroll-animate {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.scroll-animate.animated {
    opacity: 1;
    visibility: visible;
}

/* Animasyon diferan */
.fade-up {
    transform: translateY(50px);
}

.fade-up.animated {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-left.animated {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(50px);
}

.fade-right.animated {
    transform: translateX(0);
}

.zoom {
    transform: scale(0.8);
}

.zoom.animated {
    transform: scale(1);
}

.rotate {
    transform: rotate(-10deg) scale(0.9);
}

.rotate.animated {
    transform: rotate(0) scale(1);
}

.bounce {
    transform: scale(0.3);
}

.bounce.animated {
    animation: bounceIn 0.8s ease-out forwards;
}

/* Animasyon pou chak seksyon */
/*section {*/
/*    transition: all 0.6s ease;*/
/*}*/

/* Animasyon espesyal pou carousel */
.caroussel_container {
    animation: fadeInUp 0.8s ease-out;
}

/* Animasyon pou tit yo */
.titre {
    position: relative;
    overflow: hidden;
}

.titre .designTitre div {
    transition: all 0.5s ease;
}

.scroll-animate.animated .designTitre div:first-child {
    animation: fadeInLeft 0.6s ease-out;
}

.scroll-animate.animated .designTitre div:last-child {
    animation: fadeInRight 0.6s ease-out;
}

/* Animasyon pou articles */
.content_service {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.content_service.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animasyon pou podcast */
.content_podcast {
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.content_podcast.animated {
    opacity: 1;
    transform: scale(1);
}

.content_podcast:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.content_podcast:hover .box_icon_podcast {
    animation: shake 0.5s ease;
}

/* Animasyon pou archives */
.content_archive {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.content_archive.animated {
    opacity: 1;
    transform: translateY(0);
}

.content_archive:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Animasyon pou partenaires */
.partenaire {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.partenaire.animated {
    opacity: 1;
    transform: translateX(0);
}

.partenaire:hover {
    transform: translateY(-5px);
}

.partenaire:hover .boxImgpartenaire {
    animation: float 0.5s ease;
    border-color: var(--blue);
}

/* Animasyon newsletter */
/*.newsletter {*/
/*    transition: all 0.6s ease;*/
/*    opacity: 0;*/
/*    transform: scale(0.95);*/
/*}*/

/*.newsletter.animated {*/
/*    opacity: 1;*/
/*    transform: scale(1);*/
/*}*/

/*.form_newsletter input {*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.form_newsletter input:focus {*/
/*    transform: translateX(-5px);*/
/*    box-shadow: 0 0 10px rgba(0,123,255,0.3);*/
/*}*/

/*.form_newsletter button {*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.form_newsletter button:hover {*/
/*    animation: shake 0.5s ease;*/
/*}*/

/* 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 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 pour les images du carousel */
.caroussel_container .image {
    transition: transform 0.5s ease;
}

.caroussel_container .image.active {
    animation: zoomIn 0.6s ease-out;
}

/* Effet parallaxe sur les images */
.img_bg_caroussel {
    transition: transform 0.3s ease;
}

.caroussel_container:hover .img_bg_caroussel {
    transform: scale(1.05);
}

/* Animasyon dots */
.dot {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dot.active {
    animation: glowPulse 1s infinite;
}

/* Animasyon scrollbar personnalisée */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* Animation pour le header au scroll */
.header-scroll {
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de survol pour les boutons */
.button div {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.button div:hover {
    transform: scale(1.2) rotate(360deg);
}

/* Animasyon pour les cartes d'articles */
/*.box_img_service {*/
/*    overflow: hidden;*/
/*}*/

.box_img_service img {
    transition: transform 0.5s ease;
}

.content_service:hover .box_img_service img {
    transform: scale(1.03);
}

/* Animasyon pour le texte dans les cartes */
.service_title {
    transition: color 0.3s ease;
}

.content_service:hover .service_title {
    color: var(--blue);
}

/* Responsive animations */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .content_service,
    .content_podcast,
    .content_archive,
    .partenaire,
    /*.newsletter {*/
    /*    transition: none;*/
    /*    animation: none;*/
    /*    opacity: 1;*/
    /*    transform: none;*/
    /*}*/
}