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

:root {
  /* Colors */
  --color-primary: #86efac; /* Softer, more vibrant light green */
  --color-primary-dark: #4ade80;
  --color-primary-darker: #166534; /* Deep forest green for better contrast */
  --color-secondary: #f0fdf4;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  
  --color-white: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.8); /* For glassmorphism */
  --color-text-main: #0f172a; /* Slate 900 */
  --color-text-muted: #475569; /* Slate 600 */
  --color-border: #e2e8f0;
  --color-error: #ef4444;

  /* Typography */
  --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-size-base: 18px; /* Large baseline for readability */

  --text-xs: 0.875rem; /* 14px */
  --text-sm: 1rem;     /* 16px */
  --text-base: 1.125rem; /* 18px */
  --text-lg: 1.25rem;  /* 20px */
  --text-xl: 1.5rem;   /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.5rem;  /* 40px */
  --text-4xl: 3.5rem;   /* 56px */

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - Smoother & More Ambient */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 30px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;

  /* Layout */
  --container-wide: 1200px;
  --container-narrow: 850px;
}
