/* Modern Design System - Cape Saints Safaris */
:root {
  /* Brand Colors - Clean Green */
  --primary: #00A651;
  --primary-dark: #009245;
  --primary-light: #00C55E;
  --primary-50: #F0FDF4;
  --primary-100: #DCFCE7;
  --primary-900: #14532D;
  
  /* Secondary Brand Colors - Soft Green */
  --secondary: #A6D8B0;
  --secondary-dark: #8BC49A;
  --secondary-light: #C1E5C7;
  
  /* Secondary Green for Hover States */
  --secondary-green: #A6D8B0;
  
  /* Black & White Scale */
  --black: #000000;
  --black-50: #F8F9FA;
  --black-100: #F1F3F4;
  --black-200: #E8EAED;
  --black-300: #DADCE0;
  --black-400: #BDC1C6;
  --black-500: #9AA0A6;
  --black-600: #80868B;
  --black-700: #5F6368;
  --black-800: #3C4043;
  --black-900: #202124;
  
  /* Neutral Colors - Clean Gray Scale */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Brand Accent Colors */
  --accent-yellow: #FFD700;
  --accent-red: #DC2626;
  --accent-orange: #F97316;
  --accent-luxury: #312E81;
  
  /* Grey Gradients */
  --grey-gradient-top: #F5F5F5;
  --grey-gradient-bottom: #FFFFFF;
  --grey-gradient: linear-gradient(180deg, var(--grey-gradient-top) 0%, var(--grey-gradient-bottom) 100%);
  
  /* Semantic Colors */
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #DC2626;
  --info: #3B82F6;
  
  /* UX Enhancement Colors */
  --color-bg: var(--white);
  --color-bg-light: var(--gray-50);
  --color-bg-dark: var(--gray-900);
  --color-text: var(--gray-900);
  --color-text-muted: var(--gray-600);
  --color-text-light: var(--gray-500);
  --color-border: var(--gray-200);
  --color-border-light: var(--gray-100);
  --color-border-dark: var(--gray-300);
  
  /* Interactive States */
  --color-primary: var(--primary);
  --color-primary-dark: var(--primary-dark);
  --color-primary-light: var(--primary-light);
  --color-secondary: var(--secondary);
  --color-secondary-dark: var(--secondary-dark);
  --color-secondary-light: var(--secondary-light);
  
  /* Typography */
  --font-family: 'SF Pro Display', 'Public Sans', 'Visby', 'Questrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
  
  /* Font Sizes - Fluid Scale */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  --text-7xl: 4.5rem;     /* 72px */
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Spacing - 4px base unit */
  --space-0: 0;
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-5: 1.25rem;     /* 20px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-10: 2.5rem;     /* 40px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */
  --space-32: 8rem;       /* 128px */
  --space-40: 10rem;      /* 160px */
  --space-48: 12rem;      /* 192px */
  --space-56: 14rem;      /* 224px */
  --space-64: 16rem;      /* 256px */
  
  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem;   /* 2px */
  --radius: 0.25rem;       /* 4px */
  --radius-md: 0.375rem;   /* 6px */
  --radius-lg: 0.5rem;     /* 8px */
  --radius-xl: 0.75rem;    /* 12px */
  --radius-2xl: 1rem;      /* 16px */
  --radius-3xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;
  
  /* Shadows - Modern Layered System */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 500ms ease;

  /* Layout */
  --header-height-desktop: 84px;
  --header-height-mobile: 72px;
  --header-height: var(--header-height-desktop);
  --header-offset: calc(var(--header-height) + var(--space-6));
  --page-top-offset: var(--header-offset);
  
  /* Z-Index Scale */
  --z-0: 0;
  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-40: 40;
  --z-50: 50;
  --z-auto: auto;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  
  /* Container Sizes */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  
  /* Grid */
  --grid-cols-1: repeat(1, minmax(0, 1fr));
  --grid-cols-2: repeat(2, minmax(0, 1fr));
  --grid-cols-3: repeat(3, minmax(0, 1fr));
  --grid-cols-4: repeat(4, minmax(0, 1fr));
  --grid-cols-5: repeat(5, minmax(0, 1fr));
  --grid-cols-6: repeat(6, minmax(0, 1fr));
  --grid-cols-12: repeat(12, minmax(0, 1fr));
}

@media (max-width: 768px) {
  :root {
    --header-height: var(--header-height-mobile);
    --header-offset: calc(var(--header-height) + var(--space-4));
    --page-top-offset: calc(var(--header-height) + var(--space-4));
  }
}
