/*
===========================================
MAFAR GROUP - DESIGN TOKENS
Single source of truth for all visual values
Version 2.0 | February 2026
===========================================
*/

:root {
  /* Primary Brand Colors */
  --mafar-black: #0f172a;
  --mafar-gold: #D4AF37;
  --mafar-white: #FFFFFF;
  
  /* Gold Variations */
  --gold-light: #E4C76E;
  --gold-dark: #B8962F;
  --mafar-gold-light: #fffbeb;
  --mafar-gold-shadow: rgba(212,175,55,0.3);
  
  /* Healthcare Context Colors */
  --trust-blue: #2563EB;
  --innovation-teal: #14B8A6;
  --growth-green: #10B981;
  
  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --text-muted: #94a3b8;
  
  /* Header & Footer Colors (exact values from current design) */
  --mafar-dark: #1F1F1F;        /* header logo text, CTA text, mobile toggle, footer social hover */
  --background-dark: #111111;    /* footer background */
  --gold-hover: #c9a232;         /* header/mobile CTA hover state */
  --text-nav: #334155;           /* mobile nav links */
  
  /* Structural Colors */
  --border-default: #e2e8f0;
  --border-light: #f1f5f9;
  --background-light: #f8fafc;
  --background-gray: #f1f5f9;
  
  /* Functional Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;
  
  /* Functional Color Backgrounds */
  --color-success-light: #D1FAE5;
  --color-warning-light: #FEF3C7;
  --color-error-light: #FEE2E2;
  --color-info-light: #DBEAFE;
  
  /* Typography */
  --font-primary: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  
  /* Spacing Scale (4px grid) */
  --spacing-1: 0.25rem;   /* 4px */
  --spacing-2: 0.5rem;    /* 8px */
  --spacing-3: 0.75rem;   /* 12px */
  --spacing-4: 1rem;      /* 16px */
  --spacing-5: 1.25rem;   /* 20px */
  --spacing-6: 1.5rem;    /* 24px */
  --spacing-8: 2rem;      /* 32px */
  --spacing-10: 2.5rem;   /* 40px */
  --spacing-12: 3rem;     /* 48px */
  --spacing-16: 4rem;     /* 64px */
  --spacing-20: 5rem;     /* 80px */
  --spacing-24: 6rem;     /* 96px */
  
  /* Shadows - Multi-layered for modern depth */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 32px -4px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 24px 48px -8px rgba(0, 0, 0, 0.12), 0 12px 24px -6px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.4), 0 8px 10px -6px rgba(212, 175, 55, 0.2);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
  --radius-4xl: 32px;
  --radius-5xl: 48px;
  --radius-full: 9999px;
  --radius-card: 20px;
  --radius-btn: 12px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

