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


/* === Titre GDT=== */

.logo-container {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #047303;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0 0;
    margin: 150px auto 0 auto;
    margin-bottom: 60px; 
    z-index: 10;
}
.logo-container img {
    max-width: 60%; /* Plus grand visuellement, ajuste si besoin */
    height: auto;
}

/* === Boîte Mère (GDT Container) === */

.gdt-container {
    position: relative;
    padding: 20px;
    width: 1250px;
    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;
   min-height: 240vh; /* Assure une hauteur minimale */
    height: auto; /* ✅ Permet l’extension automatique */
    overflow: hidden; /* ✅ Évite les débordements */
    padding-bottom: 100px; /* ✅ Espace pour le bouton retour haut de page */
}

/* Les visuels au-dessus de la vidéo doivent rester dans le flux */
.parchemin,
.docfond {
  position: relative;   /* pas absolute */
  clear: both;          /* s'il y a eu des floats avant */
  display: block;
  margin: 220px auto;
  text-align: center;
  z-index: 0;
}

.parchemin img,
.docfond img {
  display: block;
  width: 100%;
  max-width: 1000px;    /* ajuste à ta largeur de contenu */
  height: auto;
  margin: 0 auto;
}

/* La vidéo arrive bien APRÈS ces blocs, centrée */
.video-box{
  clear: both;
  display: flex;
  justify-content: center;
  margin: 24px auto 40px;
  width: 100%;
  max-width: 1000px;
  padding: 0 16px;
  position: relative;   /* dans le flux, pas d'overlay */
  z-index: 0;
}

.video-frame{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background:#000;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.video-frame iframe{ width:100%; height:100%; border:0; display:block; }


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

.back-to-top-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

#back-to-top {
    background-color: #065404;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    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;
}

