/* ==========================================================================
   APAB ASBL — Design Tokens / Variables CSS
   Couleurs échantillonnées directement sur la maquette officielle.
   ========================================================================== */

:root {
  /* Couleurs primaires (vert forêt — identité nature / conservation) */
  --color-primary: #4f5d3a;
  --color-primary-dark: #3a4529;
  --color-primary-light: #6e7d54;
  --color-primary-pale: #d8ddc9;

  /* Couleurs secondaires (terre cuite — chaleur humaine / culture Batwa) */
  --color-secondary: #a8623f;
  --color-secondary-dark: #8c4f32;
  --color-secondary-light: #c98f72;

  /* Neutres */
  --color-dark: #2e2018;          /* brun café — footer */
  --color-dark-soft: #4c3a2a;
  --color-text: #221a14;
  --color-text-muted: #6b6258;
  --color-border: #e4e0d6;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f0;
  --color-overlay: rgba(30, 26, 18, 0.55); /* voile sombre sur les images hero */

  /* États */
  --color-success: #4f5d3a;
  --color-error: #a8412f;
  --color-white: #ffffff;

  /* Typographie */
  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;

  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-md: 1.15rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 2.75rem;
  --fs-3xl: 3.25rem;

  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-base: 1.6;

  /* Espacements (échelle 4px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Mise en page */
  --container-max: 1180px;
  --container-padding: var(--space-5);
  --header-height: 88px;

  /* Effets */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 6px rgba(34, 26, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(34, 26, 20, 0.12);
  --shadow-lg: 0 16px 40px rgba(34, 26, 20, 0.18);
  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;
}
