/* ===== Brand + Theme Tokens (Site Specific) ===== */
:root {
  /* Brand colors */
  --fau-blue: #003366;
  --fau-blue-rgb: 0, 51, 102;
  --fau-red: #CC0000;
  --fau-red-rgb: 204, 0, 0;

  --dark-blue: #002142;
  --dark-blue-rgb: 0, 33, 66;
  --medium-blue: #00509F;
  --medium-blue-rgb: 0, 80, 159;
  --light-blue: #006EDB;
  --light-blue-rgb: 0, 110, 219;
  --deep-red: #404040;
  --deep-red-rgb: 64, 64, 64;
  --sunny-yellow: #FFCE32;
  --sunny-yellow-rgb: 255, 206, 50;
  --grass-green: #39B54A;
  --grass-green-rgb: 57, 181, 74;
  --pale-purple: #6C4395;
  --pale-purple-rgb: 108, 67, 149;
  --slate-gray: #5A798C;
  --slate-gray-rgb: 90, 121, 140;
  --black: #000000;
  --black-rgb: 0, 0, 0;
  --dark-gray: #404040;
  --dark-gray-rgb: 64, 64, 64;
  --medium-gray: #CCCCCC;
  --medium-gray-rgb: 204, 204, 204;
  --light-gray: #F2F2F2;
  --light-gray-rgb: 242, 242, 242;

  --default: #000000;
  --default-rgb: 0, 0, 0;
  --inactive: #d9d9d9;
  --inactive-rgb: 217, 217, 217;

  /* Typography: Font families */
  --font-family-heading: "Unbounded", system-ui, -apple-system, sans-serif;
  --font-family-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Typography: Font weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Typography: Size scale */

 --font-size-xxs: 0.625rem; /* 10px */
 --font-size-xs: 0.750rem;  /* 12px */
 --font-size-sm: 1rem;      /* 16px */
 --font-size-md: 1.25rem;   /* 20px */
 --font-size-lg: 1.5rem;    /* 24px */
 --font-size-xl: 1.75rem;   /* 28px */
 --font-size-2xl: 2rem;     /* 32px */
 --font-size-3xl: 2.5rem;   /* 40px */
 --font-size-4xl: 3rem;     /* 48px */
 --font-size-5xl: 3.5rem;   /* 56px */

  /* Typography: Line heights */
  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
  --line-height-xl: 2.5;
  --line-height-2xl: 3;
  --line-height-3xl: 3.5;
  --line-height-4xl: 4.25;

  /* Spacing scale */
  --space-none: 0;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 8rem;

  /* Spacing Aliases */
  --space-step-0: var(--space-none);
  --space-step-1: var(--space-xs);
  --space-step-2: var(--space-sm);
  --space-step-3: var(--space-md);
  --space-step-4: var(--space-lg);
  --space-step-5: var(--space-xl);

  /* Header + navigation tokens */
  --header-height: 6.0625rem;
  --header-focus-ring: rgba(255, 255, 255, 0.35);
  --header-focus-radius: inherit;

  --eyebrow-bg: var(--fau-red);
  --eyebrow-fg: #ffffff;
  --mainnav-bg: var(--fau-blue);
  --mainnav-fg: #ffffff;
  --mega-bg: var(--dark-blue);
  --mega-title: #ffffff;

  --nav-link-dim: rgba(255, 255, 255, 0.85);
  --nav-link-hover: #ffffff;
  --mainnav-hover-bg: rgba(255, 255, 255, 0.10);
  --mainnav-active-bg: rgba(255, 255, 255, 0.16);
  --mega-link-hover: #0F87FF;

  --footer-bg: var(--dark-blue);
  --footer-fg: #ffffff;
  --fau-focus-ring-color: rgba(var(--fau-red-rgb), 0.75);
	--fau-focus-shadow: 0 0 0 0.15rem rgba(var(--fau-red-rgb), 0.75);

  /* Bootstrap overrides */
  --bs-body-color: var(--fau-blue);
}