/**
 * GMU Libraries Theme - CSS Variables
 * Based on the design system from the React prototype
 */

:root {
  /* Color Palette */
  --gmu-primary-green: #005239;
  --gmu-accent-yellow: #ffc733;
  --gmu-black: #000000;
  --gmu-white: #ffffff;
  --gmu-light-gray: #e1e1e1;
  --gmu-dark-gray: #3b3b3b;
  --gmu-overlay-black: rgba(0, 0, 0, 0.75);
  --gmu-overlay-dark: rgba(0, 0, 0, 0.8);

  /* Typography */
  --font-heading: 'Figtree', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes */
  --font-size-12: 0.75rem;
  --font-size-14: 0.875rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-22: 1.375rem;
  --font-size-32: 2rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Layout */
  --max-width: 2500px;
  --content-width: 1040px;
  --container-padding: 1.5rem;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}
