/* ==========================================================
   LIA — Information Services
   variables.css — Variables CSS globales (theme vert/or)
   Auteur : Yoda & Opus (Contrat BI-Silicium)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Inter:wght@400;500&display=swap');

/* ============================================================
   MODE NUIT (PAR DEFAUT)
   ============================================================ */
:root {
  --green-dark:    #002B1F;
  --green-light:   #00a86b;
  --gold:          #D4AF37;
  --text:          #D4AF37;
  --bg:            #0A0F0A;
  --muted:         #A0A0A0;
  --border:        #D4AF37;
  --surface:       rgba(10, 15, 10, 0.85);
  --surface-light: rgba(0, 43, 31, 0.3);
  --shadow:        rgba(0, 0, 0, 0.5);
  --gold-shadow:   rgba(212, 175, 55, 0.3);
  --radius:        12px;
  --transition:    0.3s ease;
}

/* ============================================================
   MODE JOUR
   ============================================================ */
[data-theme="light"] {
  --green-dark:    #003d2b;
  --green-light:   #00c97a;
  --gold:          #C49A2C;
  --text:          #2d2d2d;
  --bg:            #f8f9fa;
  --muted:         #6c757d;
  --border:        #C49A2C;
  --surface:       rgba(255, 255, 255, 0.95);
  --surface-light: rgba(255, 255, 255, 0.8);
  --shadow:        rgba(0, 0, 0, 0.15);
  --gold-shadow:   rgba(196, 154, 44, 0.3);
}
