/* === Améliorations responsive pour Gulliver === */

/* Conteneur principal : centré et limité en largeur */
body {
  max-width: 900px;         /* largeur max sur grands écrans */
  margin: 0 auto;           /* centre horizontalement */
  padding: 1em;             /* espace intérieur */
  box-sizing: border-box;   /* inclut le padding dans la largeur totale */
}

/* Images adaptatives */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Liens : meilleure lisibilité sur mobile */
a {
  color: #0066cc;
  text-decoration: underline;
}
a:visited {
  color: #9933cc;
}

/* Titres : légèrement plus grands sur grands écrans */
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.2em;
}

/* --- Mise en page mobile --- */
@media (max-width: 800px) {
  body {
    padding: 0.8em;
    max-width: 100%;
  }

  h1 {
    font-size: 1.6em;
  }
  h2 {
    font-size: 1.3em;
  }
  h3 {
    font-size: 1.1em;
  }

  div.admonitionblock,
  div.quoteblock {
    margin-right: 0;
    margin-left: 0;
  }

  p, li {
    font-size: 1em;
    line-height: 1.4;
  }
}

/* --- Petits écrans (téléphones) --- */
@media (max-width: 480px) {
  body {
    padding: 0.5em;
  }

  h1 {
    font-size: 1.4em;
  }

  img {
    margin: 0 auto;
  }
}
