/* Font Dyslexie */
@font-face {
  font-family: 'OpenDyslexic';
  src: url('/fonts/OpenDyslexic-Regular.otf') format('otf');
  font-display: swap;
}

/* Tailles de police (application sur :root pour impacter rem) */
:root[data-font-size="sm"] { font-size: 14px !important; }
:root[data-font-size="md"] { font-size: 16px !important; }
:root[data-font-size="lg"] { font-size: 18px !important; }
:root[data-font-size="xl"] { font-size: 20px !important; }

/* Police Dyslexique */
:root[data-font-family="dyslexic"],
:root[data-font-family="dyslexic"] body,
:root[data-font-family="dyslexic"] button,
:root[data-font-family="dyslexic"] input {
  font-family: 'OpenDyslexic', sans-serif !important;
}

/* Haut contraste */
:root[data-high-contrast="true"] {
  --bs-border-color: #000000 !important;
  --bs-body-color: #000000 !important;
}

:root[data-bs-theme="dark"][data-high-contrast="true"] {
  --bs-border-color: #ffffff !important;
  --bs-body-color: #ffffff !important;
}

/* Bouton flottant */
.a11y-float-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
}