/* ================================================================
   STAF-SG — Système bilingue FR/EN
   Règle simple : EN caché par défaut, visible si body.lang-en
   ================================================================ */

/* Bouton switcher */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; padding: 5px 12px;
  cursor: pointer; font-size: 0.8125rem; font-weight: 700;
  color: white; font-family: inherit; line-height: 1;
  transition: background 0.2s;
}
.lang-switcher:hover { background: rgba(255,255,255,0.28); }
.lang-switcher-flag { font-size: 1rem; }

/* Masquage par défaut des éléments anglais */
[data-lang="en"] { display: none !important; }
[data-lang="fr"] { display: revert !important; }

/* En mode anglais */
body.lang-en [data-lang="fr"] { display: none !important; }
body.lang-en [data-lang="en"] { display: revert !important; }
