/* ============================================================
   DARIX CRM — DESIGN TOKENS
   Source of truth pour toute l'identité visuelle.
   Ne jamais utiliser de valeurs hardcodées dans les autres CSS.
   ============================================================ */

:root {
  /* ── Couleurs ─────────────────────────────────────────── */
  --color-gold:        #C49A5E;   /* Or — fond CTA, fond icône logo */
  --color-gold-dark:   #A87E42;   /* Or foncé — hover du gold */
  --color-navy:        #1E3A5F;   /* Bleu navy — texte principal */
  --color-navy-deep:   #152A45;   /* Navy profond — D du logo, texte très fort */
  --color-cream:       #F4EFE6;   /* Crème — background pages */
  --color-cream-light: #FAF7F2;   /* Crème clair — background cards */
  --color-white:       #FFFFFF;
  --color-text:        #1E3A5F;   /* = navy, alias sémantique */
  --color-text-muted:  #6B7280;
  --color-border:      #E5E7EB;

  /* ── Typographie ──────────────────────────────────────── */
  --font-display: 'Playfair Display', 'Cormorant Garamond', 'Didot LT STD', Didot, 'Hoefler Text', 'Big Caslon', Garamond, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ── Espacements (système 8px) ────────────────────────── */
  --space-1:  0.5rem;   /*  8px */
  --space-2:  1rem;     /* 16px */
  --space-3:  1.5rem;   /* 24px */
  --space-4:  2rem;     /* 32px */
  --space-6:  3rem;     /* 48px */
  --space-8:  4rem;     /* 64px */
  --space-12: 6rem;     /* 96px */
  --space-16: 8rem;     /* 128px */

  /* ── Rayons ───────────────────────────────────────────── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* ── Ombres (sobres — navy à très faible opacité) ─────── */
  --shadow-sm: 0 1px 2px rgba(21, 42, 69, 0.04);
  --shadow-md: 0 4px 12px rgba(21, 42, 69, 0.06);
  --shadow-lg: 0 12px 32px rgba(21, 42, 69, 0.08);

  /* ── Transitions ──────────────────────────────────────── */
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);  /* Apple-style out */
  --duration-fast: 0.2s;
  --duration-base: 0.4s;
  --duration-slow: 0.8s;

  /* ── Layout ───────────────────────────────────────────── */
  --container-max:     1200px;
  --container-padding: 1.5rem;
}
