/*
 * Stamp Foundation - shared theme tokens.
 *
 * Single source of truth for every CSS custom property used across the
 * 14 foundation pages. Pages just <link> this file in <head>; any page-
 * specific styling stays inline. If a value needs to change, change it
 * here ONCE rather than 14 times.
 *
 * The 2026-05-18 audit caught the recurring "stale --text-mute on 11
 * pages" drift bug; this file exists so that bug class can't reappear.
 *
 * Values mirror stamp/context/ThemeContext.tsx (DARK_C and LIGHT_C) so
 * the website and the app keep visual parity. Update both together if
 * you change a token.
 */

:root[data-theme="light"] {
  --bg:          #F8FDF5;
  --card:        #FFFFFF;
  --card-alt:    #EFF9EC;
  --border:      #C4E0C0;
  --border-soft: #DDEEDC;
  --green:       #2D6A4F;
  --green-dark:  #1B4332;
  --green-soft:  #E4F5DF;
  --green-pale:  #D8F3DC;
  --gold:        #A87E28;
  --gold-soft:   #FBF3DC;
  --red:         #B83838;
  --red-soft:    #FCE4E4;
  --text:        #1A2E1A;
  --text-sub:    #3A5A3A;
  --text-mute:   #4A6B4A;
  --shadow:      0 1px 3px rgba(20, 40, 20, 0.06), 0 8px 24px rgba(20, 40, 20, 0.04);
  --nav-bg:      rgba(248, 253, 245, 0.85);

  /* Charity submission status pills (charity.html only). */
  --status-shortlist-bg:   #E4F5DF;
  --status-shortlist-text: #2D6A4F;
  --status-review-bg:      #FBF3DC;
  --status-review-text:    #A87E28;
  --status-declined-bg:    #FCE8E8;
  --status-declined-text:  #B83838;
}

:root[data-theme="dark"] {
  --bg:          #0C110C;
  --card:        #161D16;
  --card-alt:    #1A241A;
  --border:      #1E2B1E;
  --border-soft: #253025;
  --green:       #52B788;
  --green-dark:  #2D6A4F;
  --green-soft:  #1B2E1B;
  --green-pale:  #D8F3DC;
  --gold:        #C9A84C;
  --gold-soft:   #2A230F;
  --red:         #E87A7A;
  --red-soft:    #2A1818;
  --text:        #E8F5E8;
  --text-sub:    #9FCBA0;
  --text-mute:   #7BA37B;
  --shadow:      none;
  --nav-bg:      rgba(12, 17, 12, 0.82);

  /* Charity submission status pills (dark variants). */
  --status-shortlist-bg:   #1B2E1B;
  --status-shortlist-text: #52B788;
  --status-review-bg:      #2A230F;
  --status-review-text:    #C9A84C;
  --status-declined-bg:    #2A1818;
  --status-declined-text:  #E87A7A;
}
