/* ============================================================
   Design Tokens — Aplikasi Pondok & Sekolah
   Sumber: desain-ui-aplikasi-pondok-modern.html
   Dark premium (default) · Electric blue · Grid 8px · RTL-ready
   ============================================================ */

:root {
  /* Warna inti — dark premium */
  --bg: #14161c;
  --bg-elev: #1b1e26;
  --panel: #20242e;
  --panel-2: #262b37;
  --ink: #f2f4f8;
  --ink-2: #c6ccd8;
  --muted: #8b93a7;
  --line: #313747;
  --line-soft: #2a2f3d;

  /* Aksen */
  --accent: #2f7bff;
  --accent-strong: #0066ff;
  --accent-soft: rgba(47, 123, 255, 0.14);
  --accent-ink: #9cc3ff;

  /* Status */
  --ok: #2ecc8f;
  --ok-soft: rgba(46, 204, 143, 0.14);
  --warn: #f5b83d;
  --warn-soft: rgba(245, 184, 61, 0.14);
  --danger: #f0655f;
  --danger-soft: rgba(240, 101, 95, 0.15);
  --info: #45c4ff;
  --info-soft: rgba(69, 196, 255, 0.14);

  /* Tipografi */
  --font-body: 'Segoe UI', system-ui, -apple-system, 'Noto Sans', 'Noto Naskh Arabic', sans-serif;
  --font-mono: 'Cascadia Mono', 'JetBrains Mono', Consolas, monospace;
  --fs-base: 15px;
  --fs-sm: 0.86rem;
  --fs-xs: 0.76rem;
  --fs-lg: 1.15rem;
  --fs-xl: 1.45rem;
  --fs-2xl: 1.9rem;

  /* Spacing — grid 8px */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;

  /* Bentuk */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Bayangan halus (dark UI pakai border, bukan shadow berat) */
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.25);

  /* Layout */
  --sidebar-w: 236px;
  --topbar-h: 58px;
  --bottomnav-h: 62px;
  --content-max: 1240px;

  /* Motion — hemat */
  --t-fast: 130ms ease;
  --t-med: 220ms ease;
}

/* ---------- Tema terang ---------- */
[data-theme="light"] {
  --bg: #f2f4f8;
  --bg-elev: #ffffff;
  --panel: #ffffff;
  --panel-2: #f6f8fc;
  --ink: #131722;
  --ink-2: #38404f;
  --muted: #67708a;
  --line: #dde2ec;
  --line-soft: #e7ebf3;
  --accent: #175fe8;
  --accent-strong: #0f4fd0;
  --accent-soft: rgba(23, 95, 232, 0.10);
  --accent-ink: #175fe8;
  --shadow: 0 8px 24px rgba(20, 30, 60, 0.10);
  --shadow-soft: 0 2px 10px rgba(20, 30, 60, 0.07);
}

/* ---------- Ukuran teks (Settings) ---------- */
[data-textsize="small"]  { --fs-base: 13.5px; }
[data-textsize="large"]  { --fs-base: 17px; }

/* ---------- Kepadatan (Settings) ---------- */
[data-density="compact"] {
  --s-4: 12px;
  --s-5: 16px;
  --s-6: 24px;
  --radius: 10px;
}

/* ---------- Preferensi gerak ---------- */
@media (prefers-reduced-motion: reduce) {
  :root { --t-fast: 0ms; --t-med: 0ms; }
}
