/* ============================================
   VARIABLES.CSS — Tokens de design EBR Ingénierie
   Palette, typographie, espacement, ombres
   ============================================ */

:root {
  /* ---- Couleurs marque EBR ---- */
  --c-night: #0f1c2e;
  --c-steel: #1e3a5f;
  --c-primary: #1e3a5f;
  --c-primary-dark: #162d4a;
  --c-teal: #4a9d84;
  --c-bg: #f5f7f9;
  --c-white: #fff;
  --c-text: #3b4a5c;
  --c-muted: #6b7d8f;
  --c-success: #4a9d84;
  --c-accent: #4a9d84;
  --c-border: #d0d8e0;
  --c-light-bg: #e8eef3;

  /* ---- Dégradé marque ---- */
  --gradient-brand: linear-gradient(135deg, #0c7bb3 0%, #4a9d84 100%);
  --gradient-brand-dark: linear-gradient(135deg, #1e3a5f 0%, #0c7bb3 50%, #4a9d84 100%);

  /* ---- Typographie ---- */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ---- Espacement ---- */
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 32px;
  --gap-xl: 64px;
  --gap-2xl: 96px;

  /* ---- Layout ---- */
  --max-w: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* ---- Animations ---- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
  --dur-fast: 0.3s;

  /* ---- Ombres ---- */
  --shadow-sm: 0 1px 2px rgb(15 28 46 / 6%);
  --shadow-md: 0 4px 6px -1px rgb(15 28 46 / 10%), 0 2px 4px -2px rgb(15 28 46 / 8%);
  --shadow-lg: 0 10px 15px -3px rgb(15 28 46 / 10%), 0 4px 6px -4px rgb(15 28 46 / 8%);
  --shadow-xl: 0 20px 25px -5px rgb(15 28 46 / 10%), 0 8px 10px -6px rgb(15 28 46 / 8%);
}
