/* assets/css/theme.css */

:root{
  /* Page background */
  --bg: #a67202; /* --bg: rgba(15, 23, 42, 0.96);*/
  --bg2: #002904;
  --page-bg: linear-gradient(245deg, var(--bg), var(--bg2) 70%);

  /* Surfaces */
  --surface-1: rgba(11, 18, 32, 0.78);
  --surface-2: rgba(14, 18, 32, 0.28);
  --surface-3: #0f172a; /* Sidebar background */

  /* Text */
  --text: #e5e7eb;
  --text-muted: #adbed9;
  --text-soft: #cbd5e1;

  /* Borders */
  --border: #1f2937;
  --border-strong: #334155;

  /* Main colors */
  --primary: #2563eb;
  --primary-2: #22c55e;
  --accent: #06b6d4;
  --danger: #ef4444;

  /* Button text / contrast */
  --ink: #ffffff;
  --ink-dark: #0b0b0b;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-1: 0 8px 30px rgba(0,0,0,.25);
}

/* Optional light theme for later */
html[data-theme="light"]{
  --bg: #f8fafc;
  --bg2: #ffffff;
  --page-bg: linear-gradient(245deg, var(--bg), var(--bg2) 60%);

  --surface-1: rgba(255, 255, 255, 0.92);
  --surface-2: #ffffff;
  --surface-3: #f8fafc;

  --text: #0f172a;
  --text-muted: #475569;
  --text-soft: #334155;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --primary: #2563eb;
  --primary-2: #16a34a;
  --accent: #0284c7;
  --danger: #dc2626;

  --ink: #ffffff;
  --ink-dark: #ffffff;

  --shadow-1: 0 8px 30px rgba(15,23,42,.08);
}