/* ──────────────────────────────────────────────────────────────────────────
   Party of One — shared theme palette.
   One source of truth for both the auth pages (landing/login) and the app
   shell (index.php). Apply a scheme with data-theme on the scope element
   (usually <html>).

   Var contract (mirrors the Hearthwright pattern):
     --bg --panel --panel2 --border --text --muted --accent --accent2 --scheme
   Primary actions/buttons = --accent (light text); brand / section headings =
   --accent2; tints via color-mix(in srgb, var(--accent) N%, var(--panel)).
   ────────────────────────────────────────────────────────────────────────── */

:root,
[data-theme="adventure"] {              /* arcane dark (default) */
  --bg:#121016; --panel:#1B1721; --panel2:#26202E; --border:#3D3550;
  --text:#EDE9F7; --muted:#9B92AF; --accent:#9B6FE0; --accent2:#3FBDAE; --scheme:dark;
}
[data-theme="parchment"] {              /* moonstone (light) */
  --bg:#E7E4EF; --panel:#F5F3FA; --panel2:#E3DEEE; --border:#C7BFDA;
  --text:#241F2E; --muted:#5C5570; --accent:#6B46C1; --accent2:#1F8F82; --scheme:light;
}




:root,
[data-theme="adventure"] {              /* candle-lit dark (default) */
  /* --bg:#14100B; --panel:#1E1811; --panel2:#2A2117; --border:#3D3323; */
  /* --text:#EDE4D3; --muted:#A99A82; --accent:#C8912F; --accent2:#B4623A; --scheme:dark; */
}
[data-theme="parchment"] {              /* warm parchment (light) */
  /* --bg:#E7DFCC; --panel:#F4EEDD; --panel2:#E4D9BF; --border:#C3B48F; */
  /* --text:#2A2318; --muted:#5F5540; --accent:#9A6B1E; --accent2:#8B4A2C; --scheme:light; */
}
