/* ============================================================
   assets/css/variables.css
   Design tokens — Renaissance Sécurité
   Extraits du logo : vert foncé, rouge, or, blanc
   ============================================================ */

:root {
  /* ── Couleurs primaires (issues du logo) ── */
  --color-green-dark:   #2c4a3e;   /* sauge profond, discret */
  --color-green:        #3d6b55;   /* sauge moyen, doux */
  --color-green-light:  #5a8f74;   /* sauge clair et aéré */
  --color-green-muted:  #e9f2ee;   /* tinte très légère */

  --color-red:          #c0504a;   /* adouci : rouge terracotta chaleureux */
  --color-red-dark:     #9c3d38;   /* adouci : rouge foncé plus doux */
  --color-red-muted:    #fdf0ef;   /* adouci */

  --color-gold:         #c9980a;
  --color-gold-light:   #e8b820;
  --color-gold-muted:   #fdf4dc;

  /* ── Neutres ── */
  --color-dark:         #1c2e25;   /* vert-charbon doux */
  --color-white:        #ffffff;
  --color-cream:        #f7f4ef;
  --color-gray-100:     #f0ede8;
  --color-gray-200:     #d8d4ce;
  --color-gray-400:     #9ca3a7;
  --color-gray-600:     #6b7280;
  --color-gray-800:     #374151;

  /* ── Typographie ── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */

  /* ── Espacements ── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Layout ── */
  --container-max: 1200px;
  --nav-height: 72px;
  --radius-sm:  2px;
  --radius-md:  6px;
  --radius-lg:  12px;
  --radius-full: 9999px;

  /* ── Ombres ── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 30px rgba(44,74,62,0.18);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* ── Z-index ── */
  --z-nav:     100;
  --z-overlay: 200;
  --z-modal:   300;
}
