/* =============================================
   John Hay Hornets Baseball — Design Tokens
   ============================================= */

@font-face {
  font-family: 'Athletic';
  src: url('../fonts/AthleticRegular-nvBJ.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Brand Colors */
  --gold: #fbcf09;
  --gold-dim: #c9a607;
  --gold-glow: rgba(251, 207, 9, 0.25);
  --green: #004d05;
  --green-light: #006b07;
  --white: #ffffff;
  --black: #000000;

  /* Neutral Palette */
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-500: #555555;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --gray-200: #cccccc;
  --gray-100: #e8e8e8;

  /* Semantic Colors */
  --bg-primary: var(--black);
  --bg-secondary: var(--gray-900);
  --bg-card: var(--gray-800);
  --bg-card-hover: var(--gray-700);
  --text-primary: var(--white);
  --text-secondary: var(--gray-300);
  --text-muted: var(--gray-400);
  --accent: var(--gold);
  --accent-hover: var(--gold-dim);
  --accent-glow: var(--gold-glow);
  --badge-bg: var(--green);
  --badge-text: var(--white);

  /* Typography */
  --font-h1: 'Athletic', 'Oswald', 'Arial Black', sans-serif;
  --font-heading: 'Oswald', 'Arial Black', sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --text-2xl: clamp(1.6rem, 1.3rem + 1.5vw, 2.2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

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

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --nav-height: 70px;
  --footer-padding: var(--space-2xl);

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --border-subtle: 1px solid var(--gray-700);
  --border-accent: 2px solid var(--gold);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 20px rgba(251, 207, 9, 0.15);

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