/* ============================================================
   variables.css — Design System Tokens
   ============================================================ */

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

:root {
  /* ---- Brand Colors ---- */
  --color-yellow:      #F5C800;
  --color-yellow-dark: #D4A900;
  --color-red:         #E8151B;
  --color-red-dark:    #C0101A;
  --color-blue:        #1A6BF5;
  --color-blue-dark:   #1255CC;
  --color-blue-light:  #3D7FF7;

  /* ---- Neutral Colors ---- */
  --color-black:       #0A0A0A;
  --color-black-soft:  #111111;
  --color-white:       #FFFFFF;
  --color-grey-100:    #F4F4F4;
  --color-grey-200:    #E8E8E8;
  --color-grey-300:    #D0D0D0;
  --color-grey-400:    #A0A0A0;
  --color-grey-500:    #6B6B6B;
  --color-grey-700:    #333333;
  --color-grey-900:    #1A1A1A;

  /* ---- Typography ---- */
  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', sans-serif;

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

  /* ---- Spacing ---- */
  --space-1:  0.25rem;    /* 4px */
  --space-2:  0.5rem;     /* 8px */
  --space-3:  0.75rem;    /* 12px */
  --space-4:  1rem;       /* 16px */
  --space-5:  1.25rem;    /* 20px */
  --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 */

  /* ---- Layout ---- */
  --container-max:  1100px;
  --navbar-height:  72px;

  /* ---- Border Radius ---- */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --radius-xl:  12px;

  /* ---- Shadows ---- */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.20);
  --shadow-xl:   0 16px 48px rgba(0,0,0,0.25);

  /* ---- Transitions ---- */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* ---- Z-Index Scale ---- */
  --z-below:    -1;
  --z-base:      0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
}
