/* ══════════════════════════════════════════════════
   Good Reader  -  Default Theme (dark / sepia / light)
   Copyright (c) 2026 Stefano Marinelli
   ══════════════════════════════════════════════════ */

:root {
  --bg: #1a1a1e;
  --bg-card: #222226;
  --bg-elevated: #2a2a2e;
  --text: #e4e4e7;
  --text-muted: #a0a0ab;
  --text-dim: #6b6b78;
  --border: #333338;
  --accent: #c8a87c;
  --accent-hover: #dcc29a;
  --accent-glow: rgba(200, 168, 124, 0.15);
  --overlay: rgba(0, 0, 0, 0.6);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --radius-sm: 8px;

  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[data-theme="sepia"] {
  --bg: #f4ecd8;
  --bg-card: #efe6cf;
  --bg-elevated: #e8dcc0;
  --text: #3a3a36;
  --text-muted: #6b6b5e;
  --text-dim: #95957e;
  --border: #d4c9af;
  --accent: #8b6f47;
  --accent-hover: #a8855a;
  --accent-glow: rgba(139, 111, 71, 0.12);
  --overlay: rgba(0, 0, 0, 0.1);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] {
  --bg: #fafafa;
  --bg-card: #ffffff;
  --bg-elevated: #f5f5f5;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-dim: #9e9e9e;
  --border: #e0e0e0;
  --accent: #8b6f47;
  --accent-hover: #a8855a;
  --accent-glow: rgba(139, 111, 71, 0.1);
  --overlay: rgba(0, 0, 0, 0.04);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ── Header ──────────────────────────────────── */
.header {
  background: rgba(26, 26, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme="sepia"] .header {
  background: rgba(244, 236, 216, 0.9);
}

[data-theme="light"] .header {
  background: rgba(250, 250, 250, 0.9);
}
