/* ── MURMURATION PALETTE ─────────────────────────────────────────────────────
   Override site-wide theme variables with purple palette derived from the
   murmuration sim (murmuration.js scene + murmuration.html UI chrome).

   Load AFTER theme.css:
     <link rel="stylesheet" href="/theme.css">
     <link rel="stylesheet" href="/murmuration-theme.css">
──────────────────────────────────────────────────────────────────────────── */

:root {
  /* Backgrounds — from sim scene background + checkerboard squares */
  --color-bg:          #0a0a2e;
  --color-surface:     #12123a;
  --color-surface-hi:  #1a1a48;

  /* Navigation — translucent indigo */
  --color-nav:         rgba(10, 10, 46, 0.82);

  /* Primary — lavender, used for headings and links */
  --color-primary:     #b6b6fa;
  --color-primary-hi:  #d4d4ff;

  /* Accent — yellow (retained from site-wide palette, pops against indigo) */
  --color-accent:      #e8c020;
  --color-accent-hi:   #f5d84a;

  /* Text — lighter for readability on deep indigo */
  --color-text:        #e4e4f4;
  --color-text-dim:    #ababdd;
  --color-text-inv:    #0a0a2e;

  /* Borders & dividers — lavender at low opacity, matching sim panel chrome */
  --color-border:      rgba(136, 136, 204, 0.18);
  --color-border-hi:   rgba(136, 136, 204, 0.30);

  /* Positive / negative */
  --color-positive:    #9999dd;
  --color-negative:    #cc6688;
}
