/**
 * Hotspot Tours and Travels — Design Tokens
 * 2024–2025 travel brand design system
 */

:root {
  /* Primary palette — trust & travel */
  --color-primary: #0d4f5c;
  --color-primary-dark: #093a44;
  --color-primary-light: #167585;
  --color-accent: #e07c4a;
  --color-accent-hover: #c96a3d;
  --color-accent-light: #f5a882;

  /* Neutrals */
  --color-bg: #fafbfc;
  --color-bg-alt: #f0f4f5;
  --color-surface: #ffffff;
  --color-text: #1a2b32;
  --color-text-muted: #5a6b72;
  --color-border: #e2e8ea;

  /* Semantic */
  --color-success: #0d7d4d;
  --color-warning: #b8860b;
  --color-error: #c53030;

  /* Typography */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

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

  /* Layout */
  --container-max: 75rem;
  --container-narrow: 50rem;
  --header-height: 4.5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(13, 79, 92, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(13, 79, 92, 0.08), 0 2px 4px -2px rgba(13, 79, 92, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(13, 79, 92, 0.08), 0 4px 6px -4px rgba(13, 79, 92, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(13, 79, 92, 0.08), 0 8px 10px -6px rgba(13, 79, 92, 0.06);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}
