/* tokens.css */
:root {
  /* --- COLOR PALETTE --- */
  /* Backgrounds: Clean, snowy whites for maximum photo contrast */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F8FAFC; /* Very light cool gray for alternate sections */
  
  /* Text: High contrast for accessibility, avoiding pure black */
  --color-text-main: #1E293B; /* Dark slate */
  --color-text-muted: #64748B; /* Medium slate for secondary text */
  
  /* Brand/Trust: Deep Nordic Blue (Oulu/Iijoki water tones) */
  --color-brand-primary: #1A365D; 
  --color-brand-light: #2B6CB0;
  
  /* Action/Conversion: Warm Amber (for "Book Now" buttons ONLY) */
  --color-accent-action: #D97706; 
  --color-accent-hover: #B45309;

  /* --- TYPOGRAPHY --- */
  /* System fonts are blazing fast (no external font loading required) */
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* --- SPACING (Using a 4px/8px baseline grid) --- */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */

  /* --- BORDERS & SHADOWS --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}