/* ==========================================================================
   VARIABLES.CSS — Design Tokens for Awning Brokers
   All CSS custom properties from the design system.
   ========================================================================== */

:root {
  /* ---- Primary ---- */
  --navy:            #1B2E5E;
  --dark-navy:       #0E2747;

  /* ---- Blues — the brand family ---- */
  --sky-light:       #C6E4F5;
  --sky-mid:         #AED3EB;
  --stripe-blue:     #82B7E1;

  /* ---- Accent ---- */
  --gold:            #F5CC60;
  --gold-hover:      #E8BF4F;
  --gold-light:      #FDF4D8;

  /* ---- Neutrals ---- */
  --white:           #FFFFFF;
  --off-white:       #F8FAFB;
  --light-gray:      #F1F1F2;
  --medium-gray:     #9CA3AF;
  --dark-gray:       #374151;

  /* ---- Semantic ---- */
  --success:         #22C55E;
  --error:           #EF4444;

  /* ---- Typography Scale ---- */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   1.875rem;   /* 30px */
  --text-4xl:   2.25rem;    /* 36px */
  --text-5xl:   3rem;       /* 48px */
  --text-6xl:   3.75rem;    /* 60px */

  /* ---- Spacing System (8px base) ---- */
  --space-1:   0.25rem;    /* 4px */
  --space-2:   0.5rem;     /* 8px */
  --space-3:   0.75rem;    /* 12px */
  --space-4:   1rem;       /* 16px */
  --space-6:   1.5rem;     /* 24px */
  --space-8:   2rem;       /* 32px */
  --space-10:  2.5rem;     /* 40px */
  --space-12:  3rem;       /* 48px */
  --space-16:  4rem;       /* 64px */
  --space-20:  5rem;       /* 80px */
  --space-24:  6rem;       /* 96px */
  --space-32:  8rem;       /* 128px */

  /* ---- Border Radius ---- */
  --radius-sm:   0.375rem;  /* 6px */
  --radius-md:   0.5rem;    /* 8px */
  --radius-lg:   0.75rem;   /* 12px */
  --radius-xl:   1rem;      /* 16px */
  --radius-full: 9999px;    /* Pill shape */

  /* ---- Shadows ---- */
  --shadow-sm:   0 1px 2px rgba(27, 46, 94, 0.05);
  --shadow-md:   0 4px 12px rgba(27, 46, 94, 0.08);
  --shadow-lg:   0 8px 24px rgba(27, 46, 94, 0.10);
  --shadow-xl:   0 16px 48px rgba(27, 46, 94, 0.12);
  --shadow-glow: 0 0 20px rgba(130, 183, 225, 0.3);

  /* ---- Transitions ---- */
  --transition-base: all 0.2s ease;
}
