/* ═══════════════════════════════════════════════════════════
   NavvyNest CSS Variables
   All brand colors and design tokens centralized here
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ─────────────────────────────────────────────────────────
     Brand Colors
     ───────────────────────────────────────────────────────── */
  --color-navy: #203b8a;
  --color-navy-dark: #182a6b;
  --color-navy-light: #4b6bb7;
  --color-orange: #fe8a51;
  --color-orange-light: #ffab7d;
  --color-green: #80c95e;
  
  /* ─────────────────────────────────────────────────────────
     UI Colors
     ───────────────────────────────────────────────────────── */
  --color-background: #f4f6ff;
  --color-background-alt: rgba(255, 255, 255, 0.95);
  --color-background-muted: #e5e5f0;
  --color-card: #ffffff;
  --color-border: #e5e5f0;
  --color-muted: #e5e5f0;
  
  /* ─────────────────────────────────────────────────────────
     Text Colors
     ───────────────────────────────────────────────────────── */
  --color-text-primary: #1f1f1f;
  --color-text-secondary: #5b6275;
  --color-text-muted: #8891a8;
  
  /* ─────────────────────────────────────────────────────────
     Shadows
     ───────────────────────────────────────────────────────── */
  --shadow-sm: 0 4px 12px rgba(20, 27, 60, 0.04);
  --shadow: 0 25px 60px rgba(20, 27, 60, 0.08);
  --shadow-lg: 0 35px 80px rgba(20, 27, 60, 0.12);
  --shadow-hover: 0 40px 90px rgba(20, 27, 60, 0.15);
  
  /* ─────────────────────────────────────────────────────────
     Border Radius
     ───────────────────────────────────────────────────────── */
  --radius: 28px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 9999px;
  
  /* ─────────────────────────────────────────────────────────
     Spacing Scale
     ───────────────────────────────────────────────────────── */
  --spacing-xs: 0.5rem;    /* 8px */
  --spacing-sm: 0.75rem;   /* 12px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */
  --spacing-4xl: 6rem;     /* 96px */
  --spacing-5xl: 8rem;     /* 128px */
  
  /* ─────────────────────────────────────────────────────────
     Typography Scale
     ───────────────────────────────────────────────────────── */
  --font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 2rem;     /* 32px */
  --font-size-4xl: 2.5rem;   /* 40px */
  --font-size-5xl: 3rem;     /* 48px */
  --font-size-6xl: 4rem;     /* 64px */
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.2;
  --line-height-snug: 1.4;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* ─────────────────────────────────────────────────────────
     Transitions
     ───────────────────────────────────────────────────────── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* ─────────────────────────────────────────────────────────
     Z-Index Scale
     ───────────────────────────────────────────────────────── */
  --z-below: -1;
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  
  /* ─────────────────────────────────────────────────────────
     External Brand Colors
     ───────────────────────────────────────────────────────── */
  --color-google: #4285f4;
  --color-yelp: #d32323;
  --color-facebook: #1877f2;
  
  /* ─────────────────────────────────────────────────────────
     Additional Shadows
     ───────────────────────────────────────────────────────── */
  --shadow-md: 0 8px 24px rgba(20, 27, 60, 0.06);
  --shadow-2xl: 0 45px 100px rgba(20, 27, 60, 0.16);
  --shadow-xl: 0 40px 90px rgba(20, 27, 60, 0.14);
}

