/*
 * Copyright (c) 2026 Uncook Inc. All rights reserved.
 *
 * This source code is provided for reference purposes only.
 * You may NOT copy, modify, distribute, or use this code — in whole
 * or in part — in any other project, product, or service without
 * prior written permission from Uncook Inc.
 *
 * Commercial use is strictly prohibited.
 *
 * See LICENSE for full terms.
 */

/* ─── Default: Midnight Garden (warm dark) ──────────────────────────────── */
:root {
  --bg: #0f0d13;
  --surface: #171420;
  --surface-raised: #1e1a2e;
  --text: #e8e0f0;
  --text-muted: #7a6e96;
  --text-faint: #5a4e78; /* WCAG AA compliant (was #3d3558) */
  --accent: #a78bfa;
  --accent-dim: #2d1f5e;
  --accent-secondary: #34d399;
  --accent-tertiary: #f472b6;
  --upvote: #a78bfa;
  --downvote: #f87171;
  --border: #2a2240;
  --radius: 12px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --font-size-base: 15px;
  --font-size-small: 13px;
  --font-size-title: 17px;
  --line-height: 1.6;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --content-max-width: 760px;
  /* ─── Breakpoints (for reference — use in @media queries) ──────── */
  /* --bp-sm: 480px   (small phones, SE)                              */
  /* --bp-md: 640px   (large phones, landscape)                       */
  /* --bp-lg: 768px   (tablets portrait)                              */
  /* --bp-xl: 1024px  (tablets landscape, small desktops)             */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,.4);
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
}

/* ─── Light override (applied when data-theme="light") ────────────────── */
[data-theme="light"] {
  --bg: #f5f0ff;
  --surface: #ffffff;
  --surface-raised: #ede6ff;
  --text: #2d1f4e;
  --text-muted: #7c6aa0;
  --text-faint: #b8a8d8;
  --accent: #7c3aed;
  --accent-dim: #ede9fe;
  --accent-secondary: #059669;
  --accent-tertiary: #ec4899;
  --upvote: #7c3aed;
  --downvote: #e11d48;
  --border: #d8ccf0;
}
