/* ============================================================
   PGCC Golf App — Shared Design Tokens
   One place to change the club's color palette. Every page links
   this file in its <head>, before its own <style> block, so a
   page can still override a specific value if it genuinely needs
   to (e.g. the Playoff Bracket's darkened connector lines).
   ============================================================ */
:root{
  --pine: #1B5E20;
  --pine-dark: #0f3d12;
  --pine-deeper: #0a2c0c;
  --gold: #C9A227;
  --gold-light: #E8D48A;
  --gold-pale: #F5EAC4;
  --cream: #F7F5EF;
  --fairway-tint: #EEF4EC;
  --ink: #1c1c1a;
  --ink-soft: #5c5c56;
  --line: #e2ded2;

  /* status colors - several pages use different names for the same
     two colors (--ok/--up for green, --warn/--danger/--down for red);
     all are defined here so any page's existing usage keeps working */
  --ok: #2e7d32;
  --up: #2e7d32;
  --warn: #b3261e;
  --danger: #b3261e;
  --down: #b3261e;
}
