/* ============================================================
   TEMBO SAFARIS — Design Tokens
   Jungle Green Glassmorphism · Award-Winning Kenya Luxury Travel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Italiana&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  /* ── Jungle Color Palette ── */
  --bg:           #040d08;       /* Deep forest black-green */
  --bg-2:         #071510;       /* Slightly lighter forest */
  --surface:      rgba(8, 32, 16, 0.72);   /* Glass surface */
  --surface-2:    rgba(14, 48, 26, 0.55);  /* Elevated glass */
  --surface-3:    rgba(20, 65, 35, 0.40);  /* Light glass */
  
  --green-deep:   #0a2e14;       /* Deepest jungle */
  --green-mid:    #145a2e;       /* Forest mid */
  --green-bright: #1e8c4a;       /* Vibrant jungle */
  --green-vivid:  #22a857;       /* Electric jungle */
  --green-light:  #4ecb78;       /* Neon accent */
  --green-glow:   #6dffaa;       /* Bioluminescent glow */
  
  --gold:         #c8a84b;       /* Kenya sunset gold */
  --gold-light:   #e6c97a;       /* Warm gold hover */
  --gold-glow:    rgba(200, 168, 75, 0.25);
  
  --cream:        #f0ead8;       /* Warm savanna cream */
  --white:        #ffffff;
  --muted:        #7a9985;       /* Muted sage */
  --muted-2:      #4a6654;       /* Darker muted */
  
  --border:       rgba(78, 203, 120, 0.12);
  --border-glow:  rgba(78, 203, 120, 0.35);
  --overlay:      rgba(4, 13, 8, 0.6);
  
  /* ── Glass Effects ── */
  --glass-bg:         rgba(8, 28, 16, 0.65);
  --glass-border:     rgba(78, 203, 120, 0.18);
  --glass-shadow:     0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(78,203,120,0.08);
  --glass-blur:       blur(20px);
  --glass-blur-heavy: blur(32px);
  
  /* ── Typography ── */
  --font-display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  
  /* ── Spacing ── */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;
  --sp-11: 160px;
  
  /* ── Border Radius ── */
  --r-sm:   4px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;
  
  /* ── Transitions ── */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   150ms;
  --dur-mid:    300ms;
  --dur-slow:   600ms;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }