/* ==========================================================
   The Dendra Project — themes
   Each .theme-* class defines the same set of custom properties.
   To add a theme: copy a block, change the values, add the key
   to includes/config.php THEMES.
   ========================================================== */

/* ---------- Classic: serious, corporate, safe ---------- */
.theme-classic {
  --bg:            #f7f7f5;
  --bg-alt:        #ffffff;
  --text:          #1a1a1a;
  --text-muted:    #5c5c5c;
  --border:        #dcdcd6;
  --accent:        #1f4d3d;
  --accent-soft:   #e3ede8;
  --card-bg:       #ffffff;
  --card-shadow:       0 1px 3px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 6px 16px rgba(0,0,0,0.10);
  --font-heading:  Georgia, 'Times New Roman', serif;
  --font-body:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius:        6px;
}

/* ---------- Midnight: dark mode ---------- */
.theme-midnight {
  --bg:            #0f1115;
  --bg-alt:        #14171d;
  --text:          #e7e9ee;
  --text-muted:    #9aa0ac;
  --border:        #262b34;
  --accent:        #6fd3a4;
  --accent-soft:   #17362a;
  --card-bg:       #171a20;
  --card-shadow:       0 1px 3px rgba(0,0,0,0.4);
  --card-shadow-hover: 0 10px 24px rgba(0,0,0,0.5);
  --font-heading:  Georgia, 'Times New Roman', serif;
  --font-body:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius:        6px;
}

/* ---------- Retro Terminal: green-on-black, monospace ---------- */
.theme-terminal {
  --bg:            #05100a;
  --bg-alt:        #071a10;
  --text:          #baffc9;
  --text-muted:    #6fae82;
  --border:        #1f4a30;
  --accent:        #38ff8e;
  --accent-soft:   #0e2b1a;
  --card-bg:       #071a10;
  --card-shadow:       0 0 0 rgba(0,0,0,0);
  --card-shadow-hover: 0 0 14px rgba(56,255,142,0.25);
  --font-heading:  'Courier New', Courier, monospace;
  --font-body:     'Courier New', Courier, monospace;
  --radius:        2px;
}

.theme-terminal .brand__mark { text-shadow: 0 0 8px var(--accent); }

/* ---------- Pastel: soft, friendly ---------- */
.theme-pastel {
  --bg:            #fdf6f9;
  --bg-alt:        #fff0f6;
  --text:          #3a2e35;
  --text-muted:    #8a7480;
  --border:        #f3d9e6;
  --accent:        #c96b93;
  --accent-soft:   #fbe4ee;
  --card-bg:       #ffffff;
  --card-shadow:       0 1px 3px rgba(201,107,147,0.10);
  --card-shadow-hover: 0 8px 20px rgba(201,107,147,0.18);
  --font-heading:  'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body:     'Trebuchet MS', 'Segoe UI', sans-serif;
  --radius:        14px;
}
