/*
  Design tokens. Colour/typography/button values here are the *fallback*
  defaults — the admin Theme screen writes overrides into
  assets/css/theme.css.php, which is loaded after this file and wins.
*/
:root {
  /* Brand palette: deep teal = trust/growth/education, warm amber = youth/energy */
  --color-primary: #0f6b5c;
  --color-primary-dark: #0b4f44;
  --color-primary-light: #e4f2ef;
  --color-secondary: #f2a93b;
  --color-secondary-dark: #c9861f;
  --color-accent: #e15b4f;

  --color-bg: #fffdf9;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f4ee;
  --color-text: #1c211f;
  --color-text-muted: #5a6360;
  --color-border: #e4e1d8;

  --color-success: #1c8a4b;
  --color-danger: #c0392b;
  --color-warning: #b8860b;

  --font-heading: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 30, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 30, 25, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 30, 25, 0.14);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --container-max: 1200px;
  --btn-radius: var(--radius-pill);
}
