/* === RSMH Fjällsjö - Design Tokens === */

:root {
  /* Colors */
  --color-primary: #86efac;
  --color-primary-soft: #dcfce7;
  --color-primary-dark: #4ade80;
  --color-primary-darker: #166534;
  --color-secondary: #f0fdf4;
  --color-white: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.84);
  --color-surface-soft: #f8faf9;
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-border: #dde7df;
  --color-border-strong: #c8d8cc;
  --color-error: #dc2626;
  --color-success: #166534;
  --bg-gradient: linear-gradient(180deg, #f8faf9 0%, #ffffff 28%, #f8fafc 100%);

  /* Typography */
  --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-size-base: 17px;

  --text-xs: 0.875rem;
  --text-sm: 0.95rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.375rem;
  --text-4xl: 3.25rem;

  /* Line Heights */
  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-14: 3.5rem;
  --spacing-16: 4rem;
  --spacing-18: 4.5rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-28: 7rem;
  --spacing-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 42px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 28px 64px rgba(15, 23, 42, 0.12);

  /* Buttons and Inputs */
  --button-height: 3.25rem;
  --input-height: 3.25rem;

  /* Transitions */
  --transition-fast: 160ms ease;
  --transition-normal: 260ms ease;

  /* Layout */
  --container-wide: 1160px;
  --container-narrow: 760px;
  --reading-width: 68ch;
}
