/**
 * ===========================================================================
 * DESIGN TOKENS — AI Agent for Teachers
 * Shared CSS Custom Properties for Doc Pages & Slide Decks
 * ===========================================================================
 */

:root {
  /* =========================================================================
     1. COLOR PALETTE — DOC SYSTEM (Light Theme Default)
     ========================================================================= */
  --bg: #fbfaf7;
  --fg: #1d1f25;
  --muted: #5a5f6a;
  --line: #e5e1d8;
  --card: #ffffff;
  --chip: #eef3fb;
  --code: #f3efe6;
  --accent: #1e5fbf;
  --accent-fg: #ffffff;
  --accent-hover: #0d3f87;
  --link: #1e5fbf;
  --link-hover: #0d3f87;
  --warn: #a04500;
  --warn-bg: #fff3ea;
  --good: #1b7a4b;
  --good-bg: #eaf7f0;

  /* =========================================================================
     2. COLOR PALETTE — SLIDE DECK SYSTEM
     ========================================================================= */
  --slide-bg: #0f1a2e;
  --slide-bg-2: #172744;
  --slide-fg: #ecf0f7;
  --slide-muted: #9fb0c8;
  --slide-line: rgba(255, 255, 255, 0.10);
  --slide-line-strong: rgba(255, 255, 255, 0.18);
  --slide-card: #ffffff;
  --slide-card-fg: #1a2233;
  --slide-card-muted: #5a6677;
  --slide-accent: #f5b042;
  --slide-accent-fg: #3b2706;
  --slide-accent-2: #1e5fbf;
  --slide-accent-3: #6f3eff;
  --slide-good: #2bb673;
  --slide-warn: #d9573e;

  /* Default slide layout tokens (overridable per-deck) */
  --max-w: 1480px;
  --slide-pad-y: 40px;
  --slide-pad-x: 64px;
  --base-font: 19px;
  --heading-scale: 1;

  /* =========================================================================
     3. TYPOGRAPHY SCALE (Modular ~1.25 ratio off 16px base)
     ========================================================================= */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Cambria, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --text-xs: 0.8rem;      /* ~12.8px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5625rem;  /* 25px */
  --text-3xl: 1.953rem;   /* ~31px */
  --text-4xl: 2.441rem;   /* ~39px */
  --text-5xl: 3.052rem;   /* ~48.8px */

  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;

  /* =========================================================================
     4. SPACING SCALE (4px/8px systematic grid)
     ========================================================================= */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;

  /* =========================================================================
     5. BORDER RADIUS SCALE
     ========================================================================= */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-2xl: 16px;
  --radius-full: 9999px;
  --radius: var(--radius-lg);

  /* =========================================================================
     6. ELEVATION / SHADOW SYSTEM
     ========================================================================= */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-slide: 0 20px 60px -20px rgba(0, 0, 0, 0.6), 0 8px 22px -8px rgba(0, 0, 0, 0.35);
  --shadow: var(--shadow-md);

  /* =========================================================================
     7. INTERACTION & FOCUS TOKENS
     ========================================================================= */
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
  --focus-ring-dark: 0 0 0 2px var(--slide-bg), 0 0 0 4px var(--slide-accent);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ===========================================================================
   DARK THEME OVERRIDE (For Doc System)
   =========================================================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15171c;
    --fg: #ececec;
    --muted: #9aa0ab;
    --line: #2a2e36;
    --card: #1c1f26;
    --chip: #1b2a44;
    --code: #232732;
    --accent: #7eb6ff;
    --accent-fg: #0b1d33;
    --accent-hover: #bcd4ff;
    --link: #7eb6ff;
    --link-hover: #bcd4ff;
    --warn: #ffb070;
    --warn-bg: #382012;
    --good: #5cdba0;
    --good-bg: #113322;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
}
