/* ── Theme variables ──
   Single source of truth shared by index.html, flyer.html, and slides.html.
   Link this file before any CSS that consumes the tokens. */

:root {
  --primary: #A02B93;
  /* Split form of --primary for use with rgba(..., <alpha>). Keep in
     sync with --primary. */
  --primary-rgb: 160, 43, 147;
  --bg: #0a0a0c;
  --bg-header: #0f0f12;
  --bg-footer: #060608;
  --bg-alt: #121216;
  --text: #e0e0e0;
  --text-muted: #999999;
  --text-footer: #999999;
  --border: #1e1e28;
}

[data-theme="light"] {
  --bg: #ffffff;
  --bg-header: #ffffff;
  --bg-footer: #0f0f12;
  --bg-alt: #f5f5f7;
  --text: #1a1a1a;
  --text-muted: #666666;
  --text-footer: #cccccc;
  --border: #e0e0e0;
}
