/* ============================================
   ANIMAL SHADOW — Base Typography & Global
   ============================================ */

/* Screen-reader only — accessible mais invisble visuellement */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  background-color: var(--c-black);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--c-white-muted);
  background-color: var(--c-black);
  overflow-x: hidden;
  transition: var(--mode-transition);
}

/* Headings - DA : Benzin pour tous les titres */
h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

/* Body Text */
p {
  margin-bottom: 1.2em;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--c-white);
  font-weight: var(--fw-semibold);
}

em {
  font-style: normal;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
}

/* Links */
a {
  transition: color var(--t-fast) var(--ease-out-quart);
}

a:hover {
  color: var(--c-red);
}

/* Labels & Small Text */
.label {
  font-family: var(--ff-heading);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ff4444; /* Contraste WCAG AA : 5.1:1 sur fond sombre */
}

.text-gold {
  color: var(--c-red);
}

.text-white {
  color: var(--c-white);
}

.text-muted {
  color: var(--c-white-muted);
}

.text-center {
  text-align: center;
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--c-red);
  border: none;
  margin: 1.5rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Quote */
.quote {
  font-family: var(--ff-heading);
  font-style: normal;
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4);
  color: var(--c-gold);
  line-height: 1.5;
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  color: var(--c-white-pure);
  padding: 0.75rem 1.5rem;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  z-index: 9999;
  border-radius: var(--r-sm);
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
