/* MOKA — portail. Une seule feuille, partagée par toutes les pages.
   Aucune dépendance, aucune police distante, aucune étape de compilation. */

:root {
  --encre: #1a1a1a;
  --gris: #5a5a5a;
  --trait: #d8d8d8;
  --fond: #fbfbfa;
  --lien: #1a4a7a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 3rem 1.5rem 5rem;
  background: var(--fond);
  color: var(--encre);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

main { max-width: 38rem; margin: 0 auto; }

h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  font-weight: normal;
}

.sous-titre {
  color: var(--gris);
  margin: 0 0 2.5rem;
  font-style: italic;
}

h2 {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 2.5rem 0 0.8rem;
}

p { margin: 0 0 1.1rem; }

.promesse {
  border-left: 3px solid var(--encre);
  padding: 0.2rem 0 0.2rem 1.1rem;
  margin: 2rem 0;
  font-style: italic;
}

ul.entrees {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--trait);
}

ul.entrees li { border-bottom: 1px solid var(--trait); }

ul.entrees a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--lien);
}

ul.entrees a:hover { text-decoration: underline; }

ul.entrees .quoi {
  display: block;
  color: var(--gris);
  font-size: 0.92rem;
  font-style: italic;
}

.retour {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--gris);
  font-size: 0.92rem;
}

footer {
  max-width: 38rem;
  margin: 4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--trait);
  color: var(--gris);
  font-size: 0.85rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --encre: #e8e8e6;
    --gris: #9a9a97;
    --trait: #3a3a38;
    --fond: #161614;
    --lien: #8ab4dd;
  }
}
