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

:root {
  /* Design System Colors */
  --color-primary: #0C2340;
  --color-primary-light: #1A365D;
  --color-primary-dark: #061324;
  
  --color-accent: #FF8A00;
  --color-accent-light: #FFA633;
  --color-accent-dark: #CC6E00;
  
  --color-success: #16A34A;
  --color-success-light: #22C55E;
  --color-success-bg: #DCFCE7;
  
  --color-emergency: #DC2626;
  --color-emergency-bg: #FEE2E2;
  
  --color-bg: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-bg-alt: #F1F5F9;
  
  --color-text: #64748B;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-border: #E2E8F0;
  
  /* Typography */
  --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Spacing Scale */
  --space-2xs: 0.25rem;  /* 4px */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  
  /* Borders and Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(12, 35, 64, 0.08), 0 2px 4px -1px rgba(12, 35, 64, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(12, 35, 64, 0.1), 0 4px 6px -2px rgba(12, 35, 64, 0.05);
  --shadow-accent: 0 10px 15px -3px rgba(255, 138, 0, 0.2), 0 4px 6px -2px rgba(255, 138, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Page Layout */
  --max-width: 1350px;
}
