/* Feuille de style des pages statiques du site : présentation, confidentialité,
   mentions légales, conditions d'utilisation.
   Volontairement séparée de src/styles.css — ces pages doivent s'afficher même
   si l'application ne démarre pas, et Google doit pouvoir les lire seules.
   Mêmes couleurs que l'appli pour que l'on reste chez soi en y arrivant. */

:root {
  color-scheme: light;
  --fond: #eef2f7;
  --texte: #1e293b;
  --doux: #475569;
  --gris: #64748b;
  --bleu: #0284c7;
  --bord: rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 20px 64px;
  font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--texte);
  background: linear-gradient(180deg, #f2f6fb 0%, #eef2f7 55%, #e9eef6 100%);
  background-attachment: fixed;
}

main,
header,
footer {
  max-width: 760px;
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--bord);
  margin-bottom: 28px;
}

header img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

header a {
  font-weight: 700;
  font-size: 19px;
  color: var(--texte);
  text-decoration: none;
}

header small {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: var(--gris);
}

h1 {
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

h2 {
  font-size: 21px;
  margin: 34px 0 10px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 17px;
  margin: 22px 0 6px;
}

p,
li {
  color: var(--doux);
}

a {
  color: var(--bleu);
}

.date {
  color: var(--gris);
  font-size: 14px;
  margin-top: 0;
}

.carte {
  background: #fff;
  border: 1px solid var(--bord);
  border-radius: 20px;
  padding: 18px 22px;
  margin: 22px 0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

/* Ce qu'il reste à compléter avant la mise en ligne : impossible à rater. */
.a-completer {
  background: #fef3c7;
  border: 1px dashed #b45309;
  border-radius: 12px;
  padding: 2px 8px;
  color: #92400e;
  font-weight: 600;
}

.bouton {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

footer {
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid var(--bord);
  font-size: 15px;
  color: var(--gris);
}

footer a {
  margin-right: 14px;
  white-space: nowrap;
}
