/*
 * Bascule de langue FR / EN — pastille fixée en haut à droite.
 *
 * Feuille AUTONOME, chargée par les 18 pages du site : les cinq autres feuilles
 * (landing, securite, confidentialite, accueil, styles) ne partagent aucune
 * variable, d'où les couleurs de marque en dur ici (maroon #970000, beige
 * #FFD8B6). Fond opaque → lisible sur n'importe quel fond, clair comme sombre.
 *
 * Voir wiki/deploiement.md § « Site multilingue ».
 */
.bascule-langue {
  position: fixed;
  top: calc(10px + env(safe-area-inset-top, 0px));
  right: calc(10px + env(safe-area-inset-right, 0px));
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: #ffd8b6;
  border: 1px solid rgba(151, 0, 0, 0.18);
  box-shadow: 0 2px 10px rgba(11, 15, 26, 0.14);
  font:
    600 13px/1 system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  letter-spacing: 0.02em;
}

.bascule-langue > * {
  display: block;
  padding: 5px 9px;
  border-radius: 999px;
  text-decoration: none;
  color: #7a0000;
}

.bascule-langue a:hover,
.bascule-langue a:focus-visible {
  background: rgba(151, 0, 0, 0.1);
}

/* Langue courante : pastille pleine, non cliquable. */
.bascule-langue .actif {
  background: #970000;
  color: #ffffff;
}

@media print {
  .bascule-langue {
    display: none;
  }
}
