/*
 * Color palette — sampled from /assets/palette.png
 *
 * Swatch labels from palette:
 *   Midnight Wood  #1a1208  — deep warm black background
 *   Faded Navy     #1e2a3d  — dark blue (used for surface)
 *   Vintage Cream  #f0e2b8  — warm off-white body text
 *   Deep Plum      #3d1a52  — dark purple accent
 *   Burnt Orange   #c4531a  — CTA / link highlight
 *   Mustard Gold   #d4a020  — primary accent
 *   Dusty Turquoise #4a8f82 — secondary accent
 *   Weathered Stone #8c8070 — muted / secondary text
 */

:root {
  --color-bg:         #1a1208;   /* Midnight Wood — deep warm black        */
  --color-surface:    #261808;   /* slightly lighter dark warm surface      */
  --color-primary:    #d4a020;   /* Mustard Gold — primary accent           */
  --color-secondary:  #4a8f82;   /* Dusty Turquoise — secondary accent      */
  --color-accent:     #3d1a52;   /* Deep Plum — tertiary / decorative       */
  --color-highlight:  #c4531a;   /* Burnt Orange — CTA / link highlight     */
  --color-text:       #f0e2b8;   /* Vintage Cream — body text               */
  --color-muted:      #8c8070;   /* Weathered Stone — muted / secondary     */
}
