
/*================== 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; }

* {
    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 */
}

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


.annonces-container {
    position: relative;
    padding: 20px;
    width: 1250px;
    margin-top: 20px; /* ✅ corrige le placement */
    margin-left: 260px;
    margin-right: auto;
    margin-bottom: 100px;
    background-color: #047303;
    border: 1px solid #000;
    border-radius: 10px;
    box-sizing: border-box;
    min-height: 350vh;
    height: auto;
    overflow: hidden;
    padding-bottom: 100px;
}

.titre-container {
    position: relative;
    background-color: #047303;
    padding: 10px 0;
    text-align: center;
    margin: 0 auto 30px auto;
    border-bottom: none; /* ✅ supprime le trait noir */
}

.titre-container img {
    width: 80%;
    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 */
}


/* === Polices === */

.texte-lobster-gras {
    font-family: 'Lobster', cursive; /* Ou 'MaPolice' si locale */
    font-size: 35px;
    font-weight: lighter; /* ✅ Gras */
    font-style: none; /* ✅ Italique */
    text-decoration: none; /* ✅ Souligné */
    color: #0426FF; 
    text-transform: none; /* ✅ Majuscules */
    letter-spacing: 2px; /* ✅ Espacement entre les lettres */
}

.satisfy-regular-bleu {
  font-family: "Satisfy", cursive;
  font-size: 35px;
  font-weight: 400;
  font-style: normal;
  color: #0426FF; 
  letter-spacing: 0px; /* ✅ Espacement entre les lettres */
}

.satisfy-regular-noir {
  font-family: "Satisfy", cursive;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  color: #000000; 
  letter-spacing: 0px; /* ✅ Espacement entre les lettres */
}

/* === Bouton Contact Mail === */

.contact-button-container {
    display: relative;
    width: 100%; /* ✅ Prend toute la largeur */
    height: 45px;
    margin-top: 80px; 
    margin-left: 500px; 
    position: relative; /* ✅ Évite qu’il passe sous d'autres éléments */
    z-index: 10; /* ✅ Place le bouton au-dessus des autres éléments */
}

.contact-button {
    background-color: #065404; /* ✅ Couleur du site */
    color: white; /* ✅ Texte blanc */
    font-size: 14px; /* ✅ Taille lisible */
    font-weight: bold; /* ✅ Texte en gras */
    padding: 12px 25px; /* ✅ Bonne taille */
    border-radius: 10px; /* ✅ Coins arrondis */
    text-decoration: none; /* ✅ Pas de soulignement */
    text-align: center; /* ✅ Alignement */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* ✅ Effet d’ombre */
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #047303; /* ✅ Changement de couleur au survol */
}


/* === Boîte Texte Annonce === */

.titre-annonces {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(/img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 700px;
    height: 50px;
    padding-left: 40px;
    padding-top: 5px;
    padding-right: 40px;
    padding-bottom: 0px;
    border: 1px solid #0426FF;
    border-radius: 10px;
    	margin-left: 280px;
    	margin-top: 100px;
    margin-right: auto;
    margin-bottom: 50px;
    text-align: center;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches01 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(/img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    	padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 140px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.1;
    overflow-wrap: break-word;
    white-space: normal;
    overflow-y: hidden;
    overflow-x: hidden;
}

.recherches02 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(/img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 490px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches03 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 840px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches04 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 1190px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches05 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 1540px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches06 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 1890px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches07 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 2240px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

.recherches08 {
    box-sizing: border-box;
    position: absolute;
    /*background-image: url(img/feuillepapier01.jpg);*/
    background-color: #BDBDBD;
    width: 1100px;
    height: 300px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 0px;
    border: 2px solid #000000;
    border-radius: 10px;
    	margin-left: 50px;
    	margin-top: 2240px;
    margin-right: auto;
    margin-bottom: auto;
    text-align: left;
    font-family: verdana;
    font-size: 20px;
    color: #000000;
    line-height: 1.0;
    overflow-wrap: break-word;
    white-space: normal;
    scroll-margin-left: 0;
}

    <div class="back-to-top-container">
        <button id="back-to-top">Haut de Page</button>
    </div>
</div>

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

.back-to-top-container {
    position: absolute;
    left: 50%;
    margin-bottom: 70px;
    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;
}
