/**
 * Base IKEHU : reset léger, typographie globale, utilitaires d'accessibilité.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--ikehu-bg);
  color: var(--ikehu-text);
  font-family: var(--ikehu-font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* Accessibilité : texte réservé aux lecteurs d'écran. */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Lien d'évitement visible au focus clavier. */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--ikehu-space-sm);
  z-index: 1000;
  padding: var(--ikehu-space-xs) var(--ikehu-space-sm);
  background-color: var(--ikehu-forest);
  color: var(--ikehu-cream);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--ikehu-space-xs);
}

:focus-visible {
  outline: 2px solid var(--ikehu-forest);
  outline-offset: 2px;
}
