.section1 {
    background-image: url('../images/cover1.jpg');
    /* Remplace avec le chemin de ton image */
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
    height: 150vh;
    /* pleine hauteur de l'écran */
    position: relative;
    color: white;
}



.section1>div {
    position: relative;
    z-index: 2;
}

.section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* overlay sombre */
    z-index: 1;
}

.section1 h1 {
    font-weight: 550;
    font-family: "Raleway", sans-serif;
    font-size: 80px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.1;
    /* optionnel : ajuste l’espacement entre les lignes */
}

.landing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 50px 0;
    /* espace haut/bas selon ton besoin */
}

.radio-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    color: white;
    background: linear-gradient(195deg, #fc5917, #f01963);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.radio-button:hover {
    background: linear-gradient(135deg, #fc5917, #f01963);
    transform: scale(1.05);
}

.radio-text {
    font-size: 25px;
    color: white;
    font-weight: 500;
}


.section2 {
    margin-top: 40px;
    padding-top: 70px;
    font-family: "Raleway", sans-serif;
}

.section2 img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.section2 .agauche {
    text-align: center;
}

.texte1 {
    padding-top: 40px;
    line-height: 1.5;
}

.texte1 p {
    font-size: 15px;
}

.design {
    width: 80px;
    height: 05px;
    background: linear-gradient(to right, rgb(255, 0, 0), rgb(0, 51, 110));
}

.design2 {
    width: 80px;
    height: 03px;
    background: linear-gradient(to right, rgb(255, 0, 0), rgb(0, 51, 110));
}

@media (max-width: 768px) {
    .section2 {
        text-align: center;
    }

    .section2 .agauche {
        margin-bottom: 20px;
    }

    .section2 h3 {
        font-size: 22px;
    }
}


@media (max-width: 768px) {

    .landing-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 50px 0;
        /* espace haut/bas selon ton besoin */
    }

    .radio-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        font-size: 24px;
        color: white;
        background: linear-gradient(195deg, #fc5917, #f01963);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }

    .radio-button:hover {
        background: linear-gradient(135deg, #fc5917, #f01963);
        transform: scale(1.05);
    }

    .radio-text {
        font-size: 18px;
        color: white;
        font-weight: 500;
    }

    .section1 {
        background-image: url('../images/cover1.jpg');
        /* Remplace avec le chemin de ton image */
        background-size: cover;
        background-position: center 55%;
        background-repeat: no-repeat;
        height: 110vh;
        /* pleine hauteur de l'écran */
        position: relative;
        color: white;
    }

}

.section-responsive {
    padding: 0px 0;
    margin-top: -20px;
}

.content-wrapper {
    max-width: 620px;
    /* centré par défaut */
}

/* Quand l’écran est large */
@media (min-width: 492px) {
    .content-wrapper {
        margin-left: auto;
        /* pousse le bloc vers la droite */
        margin-right: 0px;
    }
}

.custom-details summary {
    list-style: none;
    cursor: pointer;
}

.custom-details summary::-webkit-details-marker {
    display: none;
}

.custom-details summary::marker {
    display: none;
}



.poli {
    padding: 10px;
    font-size: 13px;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, rgb(255, 0, 0), rgb(0, 51, 110)) 1;
    font-family: "Raleway", sans-serif;
}


.suivant{
    padding-right: 30px;
}

h2,h3,h4 {font-family: "Raleway", sans-serif;}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  .comment-box {
    margin-top: 20px;
  }


  .comment-scrollable {
    max-height: 300px;
    overflow-y: auto;
  }
  