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

:root {
  /* Brand Palette (Premium Dark Blue, Light Blue, & Vibrant Red) */
  --primary-color: #0e3e6c;         /* Dark Blue primary theme color */
  --primary-rgb: 14, 62, 108;
  --primary-light-color: #27537a;   /* Light Blue auxiliary brand color */
  --primary-light-rgb: 39, 83, 122;
  --secondary-color: #e00545;       /* Vibrant Red secondary CTA color */
  --secondary-rgb: 224, 5, 69;
  
  /* Neutral Palette */
  --bg-color: #f6f8fb;              /* Ultra-clean light-gray clinical background */
  --card-bg: #ffffff;
  --text-dark: #121e2b;             /* Charcoal Slate */
  --text-light: #52637a;            /* Clinical Gray */
  --border-color: #e2eaf1;
  --placeholder-color: #a0aec0;
  
  /* Status Colors */
  --success: #10b981;
  --success-rgb: 16, 185, 129;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Typography (Primary 'Poppins', then system 'San Francisco' or 'Roboto') */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Elevation and Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 40px rgba(0, 75, 135, 0.08);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.02);

  /* Borders & Borders Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Micro-interactions & Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-elastic: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  
  /* Glassmorphism settings */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);
}
