
/*================== COMMUNS ===================*/

.indent-40 {
text-indent: 40px; }
.indent-45 {
text-indent: 45px; }
.indent-50 {
text-indent: 50px; }
.indent-55 {
text-indent: 55px; }
.indent-60 {
text-indent: 60px; }
.indent-65 {
text-indent: 65px; }
.indent-70 {
text-indent: 70px; }
.indent-75 {
text-indent: 75px; }
.indent-80 {
text-indent: 80px; }
.indent-85 {
text-indent: 85px; }
.indent-90 {
text-indent: 90px; }
.indent-95 {
text-indent: 95px; }
.indent-100 {
text-indent: 100px; }
.indent-105 {
text-indent: 105px; }
.indent-110 {
text-indent: 110px; }
.indent-115 {
text-indent: 115px; }
.indent-120 {
text-indent: 120px; }
.indent-125 {
text-indent: 125px; }
.indent-200 {
text-indent: 200px; }
.indent-210 {
text-indent: 210px; }
.indent-215 {
text-indent: 215px; }
.indent-220 {
text-indent: 220px; }
.indent-225 {
text-indent: 225px; }
.indent-230 {
text-indent: 230px; }
.indent-235 {
text-indent: 235px; }
.indent-240 {
text-indent: 240px; }
.indent-290 {
text-indent: 290px; }
.indent-300 {
text-indent: 300px; }
.indent-400 {
text-indent: 400px; }
.indent-500 {
text-indent: 500px; }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.cesure {
    width: 100%; /* ✅ Ajuste à la largeur de la box */
    max-width: 350px; /* ✅ Largeur max */
    word-wrap: break-word; /* ✅ Coupe les mots longs */
    overflow-wrap: break-word; /* ✅ Assure la compatibilité */
    hyphens: auto; /* ✅ Ajoute la césure automatique */
    text-align: justify; /* ✅ Justification pour plus d'équilibre */
}

html {
    scroll-behavior: smooth;
}

.anchor {
    display: block;
    position: relative;
    top: -200px; /* Décale l’ancre vers le haut pour que le titre apparaisse bien */
    visibility: hidden; /* Cache l'ancre visuellement */
    height: 1px; /* Évite un espace vide */
}


 /*============ FIN COMMUNS =================*/


/* ✅ Conteneur principal (Box-Mère) */

.mentions-container {
    position: relative;
    padding: 20px;
    width: 1250px;
    min-height: 2300px; /* ✅ Assure une hauteur minimale */
    height: auto; /* ✅ Permet l’extension automatique */
    margin-top: 20px; /* ✅ Assure qu'elle passe sous le titre */
    margin-left: 260px; /* ✅ Alignement identique aux autres pages */
    margin-right: auto;
    margin-bottom: 100px;
    background-color: #047303;
    border: 1px solid #000;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: visible; /* ✅ Permet au contenu de s'afficher entièrement */
    padding-bottom: 100px; /* ✅ Espace pour le bouton retour haut de page */
}

.titre-container {
    position: relative;
    background-color: #047303;
    padding: 10px 0;
    text-align: center;
    margin-left: 0px;
    margin-bottom: 30px;
    border-bottom: 2px;
}

.titre-container img {
    width: 80%; /* ✅ Prend toute la largeur de .titre-container */
    height: auto;
    display: block;
    margin: 0 auto;
}

.trait-noir {
    border: none;
    height: 4px;
    background-color: #000; /* ✅ Trait noir */
    width: 40%;             /* ✅ Tu peux ajuster : 100% = pleine largeur */
    margin: 0 auto 100px auto; /* ✅ Centré + espace sous le trait */
}



/* === Premier Trait Noir === */

.traitnoirA-container {
    position: absolute;
    margin-top: 250px;
    margin-left: 350px;
    width: 500px;
    text-align: center;
}

.traitnoirA-container img {
    width: 100%;
    height: auto;
}


.traitnoirB-container {
    position: absolute;
    margin-top: 530px;
    margin-left: 350px;
    width: 500px;
    text-align: center;
}
.traitnoirB-container img {
    width: 100%;
    height: auto;
}


/* === Bouton Retour Haut de Page === */

.back-to-top-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px; /* ✅ 50px au-dessus de la bordure inférieure */
    display: flex;
    justify-content: center;
    z-index: 1000;
}

#back-to-top {
    background-color: #065404;
    color: white;
    font-size: 16px; /* ✅ Texte plus lisible */
    font-weight: bold;
    padding: 12px 20px; /* ✅ Augmente la taille */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#back-to-top:hover {
    background-color: #047303;
}
