/* ===========================================================================
   Clemson Little Theatre — Color tokens
   ---------------------------------------------------------------------------
   Official brand palette (Style Guide): maroon #6d3335 · dusty rose #cd9f9f ·
   white #ffffff · black #000000 · gray #4c4c4c. The 2026–2027 season layers a
   six-hue show palette over that core — one signature color per production.
   Surfaces lean white + a soft dusty-rose ground; full-bleed maroon is the
   "house lights down" section. See README "Visual Foundations".
   =========================================================================== */

:root {
  /* ---- Brand core: CLT Maroon (anchor #6d3335) ----------------------- */
  --clt-maroon-900: #3C1C1E; /* deepest — hero/footer ground, shadow        */
  --clt-maroon-800: #4F2426;
  --clt-maroon-700: #6D3335; /* PRIMARY brand maroon (logo, marquee)        */
  --clt-maroon-600: #7E4042;
  --clt-maroon-500: #985456;
  --clt-maroon-400: #B47A7C;
  --clt-maroon-300: #CD9F9F; /* official dusty rose (rules, accents)        */
  --clt-maroon-200: #E1C4C4;
  --clt-maroon-100: #EFDDDD;
  --clt-maroon-050: #F8EEEE;

  /* ---- Dusty rose (official #cd9f9f) tints --------------------------- */
  --rose-500: #CD9F9F;
  --rose-300: #DFC0C0;
  --rose-200: #EAD5D6; /* style-guide page ground                          */
  --rose-100: #F3E6E6;

  /* ---- Neutrals (official: white / black / gray #4c4c4c) ------------- */
  --white:    #FFFFFF;
  --black:    #000000;
  --gray-700: #4C4C4C; /* official brand gray — body text                  */
  --gray-500: #6F6B6B;
  --gray-300: #B6AFAF;
  --paper-050: #FBF6F6; /* default page — barely-rose off-white             */
  --paper-100: #F4ECEC;
  --clt-cream: #F7F1EA; /* warm off-white behind poster art (--bg-2)        */
  --clt-paper: #ECE4D7; /* aged-playbill paper card ground (--bg-3)         */

  /* ---- CAYT (Youth Theatre) accent — golden marquee glow ------------- */
  --cayt-gold:      #F4C542;
  --cayt-gold-soft: #FBE49A;

  /* ---- Season 2026–2027 show palette --------------------------------- */
  --show-sleepy-hollow: #CF6327; /* burnt orange  — Sleepy Hollow          */
  --show-into-woods:    #436648; /* forest green  — Into the Woods Jr      */
  --show-christmas:     #AF3B3B; /* holly red     — A Christmas Carol      */
  --show-gatsby:        #4553AF; /* deco blue     — The Great Gatsby       */
  --show-hobbit:        #F4B71B; /* shire gold    — The Hobbit             */
  --show-cinderella:    #915DC4; /* fairytale violet — Cinderella          */

  /* ---- Semantic aliases ---------------------------------------------- */
  --surface-page:    var(--paper-050);
  --surface-raised:  var(--white);
  --surface-rose:    var(--rose-200);  /* branded soft-rose section        */
  --surface-invert:  var(--clt-maroon-700);
  --surface-marquee: var(--clt-maroon-900); /* hero / footer "lights down" */

  --text-strong:   var(--clt-maroon-700); /* brand headings                */
  --text-ink:      var(--black);
  --text-body:     var(--gray-700);
  --text-muted:    var(--gray-500);
  --text-on-dark:  var(--white);
  --text-on-dark-muted: var(--rose-300);
  --text-brand:    var(--clt-maroon-700);

  --border-soft:   var(--clt-maroon-200);
  --border-rule:   var(--clt-maroon-300); /* dusty-rose divider under heads */
  --border-strong: var(--clt-maroon-700);

  --accent:          var(--clt-maroon-700);
  --accent-contrast: var(--white);
  --cta-gold:        var(--show-hobbit); /* yellow "Get Tickets" CTA        */
  --focus-ring:      var(--show-hobbit);

  /* ---- Status (kept warm to fit the theatre voice) ------------------- */
  --status-success: #436648;
  --status-warning: #CF6327;
  --status-error:   #AF3B3B;
  --status-info:    #4553AF;
}
