/* CSS Variables & Theme Design Tokens */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Lato:wght@300;400;600;700;900&display=swap');

:root {
  /* Brand Colors */
  --nh-blue-dark: #00205B;
  --nh-blue-medium: #0A3C76;
  --nh-blue-light: #16569E;
  --nh-blue-ultra-light: #F0F5FA;
  
  --nh-yellow: #FFD300;
  --nh-yellow-hover: #E6BD00;
  --nh-yellow-glow: rgba(255, 211, 0, 0.4);
  
  /* Neutral Palette */
  --bg-dark: #080E1A;
  --bg-light: #F8FAFC;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --border-light: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.08);
  
  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(8, 14, 26, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: 16px;
  
  /* Semantic Status */
  --color-success: #10B981;
  --color-error: #EF4444;
  --color-warning: #F59E0B;
  
  /* Typography */
  --font-heading: 'Cabin', sans-serif;
  --font-body: 'Cabin', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows & Glows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --nh-glow: 0 0 20px rgba(253, 184, 19, 0.3);
  --nh-blue-glow-shadow: 0 0 25px rgba(10, 60, 118, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}
