/* ================================================================
   NatureWandrr — tokens.css
   Design tokens: all CSS custom properties.
   Import this file first in every page.
   ================================================================ */

:root {
  /* --- Color Palette --- */
  --color-bg:                #0a1a0d;
  --color-surface:           #14301a;
  --color-elevated:          #1f4a26;
  --color-accent-green:      #2d6a3a;
  --color-accent-gold:       #c9a84c;
  --color-accent-gold-hover: #dbbe6a;

  --color-text-primary: #f5f0e8;
  --color-text-muted:   #a8b5a0;
  --color-text-inverse: #0a1a0d;

  --color-border:       #1f4a26;
  --color-border-muted: rgba(255, 255, 255, 0.08);

  --color-focus-ring: #c9a84c;

  /* --- Typography Scale --- */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.25rem;   /* 20px */
  --text-xl:   1.5rem;    /* 24px */
  --text-2xl:  1.875rem;  /* 30px */
  --text-3xl:  2.25rem;   /* 36px */
  --text-4xl:  3rem;      /* 48px */
  --text-5xl:  3.75rem;   /* 60px */

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* --- Spacing Scale --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Section Spacing --- */
  --section-py: clamp(var(--space-16), 8vw, var(--space-32));

  /* --- Layout --- */
  --container-max: 1200px;
  --container-px:  var(--space-6);

  /* --- Border Radius --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-pill: 999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);

  /* --- Transitions --- */
  --duration-fast:   150ms;
  --duration-normal: 250ms;
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
}
