
.btn-retour {

    padding: 5px 15px;
    font-size: 18px;
    color: #fff;
    background-color: #030303d9;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-retour:hover {
    background-color: #cecece;
    color: #333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-retour:active {
    background-color: #cecece;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-retour:focus {
    outline: none;
}



.social-links a {
    color: #e70ca5; /* Couleur par défaut des icônes, ici en noir */
    font-size: 1.5rem; /* Taille des icônes */
    text-decoration: none; /* Enlève le soulignement */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: pink; /* Changement de couleur au survol (bleu pour un effet interactif) */
}
       





        .video-section {
            position: relative;
            width: 100%;
            height: 100vh; /* Vidéo occupe toute la hauteur de la fenêtre */
            overflow: hidden;
        }

        .fullscreen-video {
            position: absolute; /* Vidéo occupe tout l'arrière-plan */
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            object-fit: cover;
            z-index: -1; /* La vidéo reste en arrière-plan */
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2); /* Filtre noir à 90% de transparence */
            z-index: 0;
        }




        /* Container principal pour les deux colonnes */
    .columns-container {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Alignement vertical centré pour toutes les colonnes */
        width: 100%;
        padding: 0px;
        box-sizing: border-box;
        }

    /* Colonne de texte (20%) */
    .text-column {
        display: flex;
        justify-content: center;
        flex-direction: column; /* Permet au texte de s'empiler correctement */
        width: 20%;
        padding: 30px;
    }

    /* Colonnes d'images (40% chacune) */
    .image-column {
        width: 40%;
        position: relative;
    }

    /* Images ajustées pour être responsive */
    .image-container img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease-in-out;
    }

    /* Style des flèches */
    .arrow-left, .arrow-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .boutdid{width:50px;}




/* Animation pour afficher un texte à la fois */
@keyframes fadeInOut {
    0%, 1% {
        opacity: 0;
    }
        1%, 20% {
        opacity: 1;
    }
    25%, 100% {
        opacity: 0;
    }
}

/* Applique l'animation à chaque texte */
#text1, #text2, #text3, #text4 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: white;
    font-size: 30px;
    text-shadow: 1px 1px 2px #333;
    opacity: 0;
    animation: fadeInOut 32s infinite; /* Cycle total de 16 secondes */
}

/* Délai pour chaque texte */
#text2 {
    animation-delay: 8s; /* Commence après 4 secondes */
}

#text3 {
    animation-delay: 16s; /* Commence après 8 secondes */
}

#text4 {
    animation-delay: 24s; /* Commence après 12 secondes */
}









/* pour afficher les photos dans le div avec un fondu */
.container1 {
    display: flex;
    justify-content: space-between;
}

.image-slideshow1 {
    width: 100%;
    height: 500px; /* Ajuste la hauteur selon tes besoins */
    position: relative;
    overflow: hidden;
}

.image-container1 {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container1 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlideshow 15s infinite; /* Durée totale de l'animation */
    z-index: -1;
}

/* Définir le timing de chaque image */
.image-container1 img:nth-child(1) {
    animation-delay: 0s; /* La première image démarre immédiatement */
}

.image-container1 img:nth-child(2) {
    animation-delay: 3s; /* La deuxième image démarre après 5 secondes */
}

.image-container1 img:nth-child(3) {
    animation-delay: 6s; /* La troisième image démarre après 10 secondes */
}

.image-container1 img:nth-child(4) {
    animation-delay: 9s; /* La quatrième image démarre après 15 secondes */
}

.image-container1 img:nth-child(5) {
    animation-delay: 12s; /* La cinquième image démarre après 20 secondes */
}


/* Keyframes pour l'effet de fondu */
@keyframes fadeSlideshow {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


.text-section1 {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-section1 h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.text-section1 p {
    font-size: 18px;
    line-height: 1.5;
}


