/* ============================================
   JAMILAH TRAVEL — DESIGN TOKENS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* --- Primary: Hijau Tua (Islam, ketenangan) --- */
  --color-primary: #1B5E20;
  --color-primary-light: #2E7D32;
  --color-primary-dark: #0D3B14;
  --color-primary-50: rgba(27, 94, 32, 0.05);
  --color-primary-100: rgba(27, 94, 32, 0.1);
  --color-primary-200: rgba(27, 94, 32, 0.2);

  /* --- Accent: Emas (Premium, Tanah Suci) --- */
  --color-accent: #D4A84B;
  --color-accent-light: #E8C97A;
  --color-accent-dark: #B8892E;
  --color-accent-50: rgba(212, 168, 75, 0.08);
  --color-accent-100: rgba(212, 168, 75, 0.15);

  /* --- Neutral --- */
  --color-bg: #FAFAF7;
  --color-bg-dark: #0F1A12;
  --color-bg-hero: #091208;
  --color-text: #1A1A1A;
  --color-text-secondary: #555555;
  --color-text-light: #767676;
  --color-text-on-dark: #F5F0E8;
  --color-text-on-dark-secondary: rgba(245, 240, 232, 0.8);

  /* --- Surface --- */
  --color-surface: #FFFFFF;
  --color-surface-warm: #F8F4ED;
  --color-surface-cream: #FDF9F0;
  --color-border: #E8E0D4;
  --color-border-light: #F0EBE2;

  /* --- Typography --- */
  --font-heading: 'Amiri', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --fs-display: clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h1: clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h2: clamp(1.4rem, 2.5vw, 2rem);
  --fs-h3: clamp(1.1rem, 1.8vw, 1.35rem);
  --fs-h4: 1.1rem;
  --fs-body: 0.95rem;
  --fs-body-lg: 1.05rem;
  --fs-small: 0.85rem;
  --fs-xs: 0.75rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.2;
  --lh-heading: 1.3;
  --lh-body: 1.7;

  /* --- Spacing --- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 3rem;
  --space-4xl: 4.5rem;
  --space-section: clamp(3rem, 6vw, 5rem);

  /* --- Borders & Shadows --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 4px 24px rgba(212, 168, 75, 0.2);
  --shadow-green: 0 4px 24px rgba(27, 94, 32, 0.15);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- Z-index --- */
  --z-navbar: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;
}
