/*
  Color Palette - Extracted from logo.png
  Primary: #2C5F8D
  Secondary: #4A90A4
  Accent: #F27627
  Neutral Dark: #333333
  Neutral Medium: #666666
  Neutral Light: #F8F9FA
*/

:root {
  /* Primary Colors */
  --color-primary: #2C5F8D;
  --color-secondary: #4A90A4;
  --color-accent: #F27627;
  
  /* Neutral Colors */
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-background: #FFFFFF;
  --color-background-alt: #F8F9FA;
  --color-border: #E0E0E0;
  
  /* Semantic Colors */
  --color-success: #28A745;
  --color-error: #DC3545;
  --color-info: #17A2B8;
  --color-warning: #FFC107;
  
  /* Typography Scale */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-h1: 3rem;        /* 48px */
  --font-size-h1-mobile: 2rem; /* 32px */
  --font-size-h2: 2.25rem;     /* 36px */
  --font-size-h2-mobile: 1.75rem; /* 28px */
  --font-size-h3: 1.75rem;     /* 28px */
  --font-size-h3-mobile: 1.5rem; /* 24px */
  --font-size-h4: 1.5rem;      /* 24px */
  --font-size-h4-mobile: 1.25rem; /* 20px */
  --font-size-body: 1rem;      /* 16px */
  --font-size-small: 0.875rem; /* 14px */
  
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
  
  /* Spacing System (8px base) */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-xxl: 4rem;    /* 64px */
  --space-xxxl: 6rem;   /* 96px */
  
  /* Layout */
  --container-max-width: 1200px;
  --gutter: 1.5rem;     /* 24px */
  --gutter-mobile: 1rem; /* 16px */
  
  /* Breakpoints */
  --breakpoint-mobile: 320px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1025px;
  --breakpoint-large: 1441px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 200ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
}