/* ============================================
   Tamil Learning Module — Design Tokens
   ============================================ */

:root {
  /* ── Background & Surface ── */
  --bg-primary: #f5f6f8;
  --bg-card: #ffffff;
  --bg-card-hover: #fafbfc;
  --bg-overlay: rgba(0, 0, 0, 0.45);

  /* ── Text ── */
  --text-primary: #1a1d2e;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-white: #ffffff;

  /* ── Accent Palette (Calm Pastels) ── */
  --accent-coral: #ff7b7b;
  --accent-coral-light: #fff0f0;
  --accent-teal: #36b5a0;
  --accent-teal-light: #e8f8f5;
  --accent-violet: #8b5cf6;
  --accent-violet-light: #f0ebff;
  --accent-amber: #f59e0b;
  --accent-amber-light: #fef3c7;
  --accent-blue: #3b82f6;
  --accent-blue-light: #eff6ff;
  --accent-rose: #f43f5e;
  --accent-rose-light: #fff1f2;
  --accent-emerald: #10b981;
  --accent-emerald-light: #ecfdf5;
  --accent-indigo: #6366f1;
  --accent-indigo-light: #eef2ff;

  /* ── Primary Action ── */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: #eef2ff;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);

  /* ── Success / Warning / Error ── */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* ── Borders & Shadows ── */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 14px 36px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.05);

  /* ── Radius ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 40px;
  --space-4xl: 48px;
  --space-5xl: 64px;

  /* ── Typography ── */
  --font-family: 'Noto Sans Tamil', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.8125rem;
  --fs-base: 0.9375rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Index ── */
  --z-card: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-popup: 300;
  --z-celebration: 400;
}
