/* ============================================================
   theme.css — CSS custom properties for dark/light themes
   ============================================================ */

:root {
  --bg: #0e0f11;
  --bg2: #141618;
  --surface: #1a1d21;
  --surface2: #222528;
  --text: #f0ede8;
  --muted: #8a8582;
  --accent: #5b9cf6;
  --accent-dim: rgba(91, 156, 246, 0.12);
  --accent-border: rgba(91, 156, 246, 0.2);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.5);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 20px;
}

[data-theme="light"] {
  --bg: #f5f3ef;
  --bg2: #eceae5;
  --surface: #ffffff;
  --surface2: #f0ede8;
  --text: #17161a;
  --muted: #6b6660;
  --accent: #2b5ea7;
  --accent-dim: rgba(43, 94, 167, 0.09);
  --accent-border: rgba(43, 94, 167, 0.2);
  --border: rgba(0, 0, 0, 0.09);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
}
