/* plan-du-site.css */

/* Style global pour le body */
body {
  background-color: #ffffff;              /* Fond blanc sur toute la page */
  font-family: 'Open Sans', sans-serif;  /* Police Open Sans */
  color: #301910;                        /* Texte marron foncé */
  margin: 0;
  padding: 0;
}

/* Conteneur principal du plan du site */
.plan-du-site-container {
  max-width: 800px;          /* Largeur max sur écran ordinateur */
  margin: 2rem auto;
  padding: 1rem;
  background-color: #ffffff; /* Fond blanc */
}

/* Titre principal */
.plan-du-site-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #301910;
}

/* Ligne horizontale personnalisée */
hr.custom-line {
  border: none;
  border-top: 2px dashed #301910;
  margin: 2rem 0;
}

/* Illustration centrée */
.illustration {
  text-align: center;
  margin: 2rem 0;
}

.illustration img {
  max-width: 100%;  /* L'image ne dépasse jamais la largeur du conteneur */
  height: auto;
  width: 40%;       /* Sur un grand écran, 40% */
}

/* Listes principales et sous-listes */
.plan-du-site-container ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.plan-du-site-container ul ul {
  list-style-type: circle;
  margin-top: 0.5rem;
}

/* Style des liens */
.plan-du-site-container a {
  font-size: 1.1rem;
  text-decoration: underline;
  color: #301910;
  transition: color 0.3s;
}

.plan-du-site-container a:hover {
  color: #D1893D; /* Couleur orange au survol */
}

/* Exemple de lien avec couleur greenyellow */
a.greenyellow {
  color: #ADFF2F;
}

/* ---- Rendre la page responsive sur mobile ---- */
@media (max-width: 576px) {
  .plan-du-site-container {
    max-width: 100%;
    margin: 1rem;   /* pour ne pas coller au bord */
    padding: 1rem;
  }

  /* Image à 100% au lieu de 40% */
  .illustration img {
    width: 100%;  
  }
}
