/* Skyout Paragliding — Design Tokens
   Aesthetic: Valle del Cauca — Open Sky
   XC paragliding holidays in Colombia — sky, light, altitude, and the valley below
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Epilogue:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Colors ─────────────────────────────────────────────── */
  --color-primary:      #1D3557;   /* deep Andean sky before dawn */
  --color-primary-dark: #0F2035;   /* night sky at altitude */
  --color-accent:       #C8521A;   /* Colombian clay & sunset */
  --color-accent-light: #E8784A;   /* thermal glow */
  --color-sky:          #3D8FCE;   /* mid-altitude sky */
  --color-sky-light:    #88C4E4;   /* hazy horizon sky */
  --color-valley:       #6B9E4A;   /* Valle del Cauca sugarcane */
  --color-bg:           #F4F1EB;   /* warm daylight white */
  --color-bg-alt:       #EAE6DE;   /* softer section background */
  --color-surface:      #FFFFFF;
  --color-text:         #1A1614;   /* near-black */
  --color-text-muted:   #6E6259;
  --color-text-light:   #9E958C;
  --color-border:       #DDD8D0;
  --color-border-dark:  #C4BDB3;

  /* ── Typography ──────────────────────────────────────────── */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Epilogue', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* ── Type Scale ──────────────────────────────────────────── */
  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.25rem;
  --text-6xl:  4.5rem;

  /* ── Layout ──────────────────────────────────────────────── */
  --header-h:         72px;
  --container-max:    1200px;
  --container-narrow: 720px;
  --container-wide:   1400px;

  /* ── Spacing ─────────────────────────────────────────────── */
  --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;

  /* ── Borders & Radius ────────────────────────────────────── */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   12px;
  --radius-full: 9999px;

  /* ── Shadows ─────────────────────────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(26,22,20,0.08), 0 1px 2px rgba(26,22,20,0.06);
  --shadow-md:  0 4px 12px rgba(26,22,20,0.10), 0 2px 4px rgba(26,22,20,0.06);
  --shadow-lg:  0 12px 32px rgba(26,22,20,0.12), 0 4px 8px rgba(26,22,20,0.06);
  --shadow-inset: inset 0 1px 3px rgba(26,22,20,0.08);

  /* ── Transitions ─────────────────────────────────────────── */
  --transition-fast:   0.12s ease;
  --transition-base:   0.22s ease;
  --transition-slow:   0.4s ease;

  /* ── Z-index ─────────────────────────────────────────────── */
  --z-header: 100;
  --z-modal:  200;
  --z-toast:  300;
}
