@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Forest & Gold Harvest Theme */
  --color-primary: #1b5e20;        /* Deep Forest Green (Trust & Freshness) */
  --color-primary-light: #4caf50;  /* Vibrant Green (Hover & Accents) */
  --color-primary-dark: #0d3b0f;   /* Dark Forest Green (Text/Contrast) */
  --color-secondary: #ff6f00;      /* Warm Amber/Gold (CTAs & Premium Highlights) */
  --color-secondary-light: #ffa726;/* Soft Amber (Badges/Notification) */
  --color-accent: #c62828;         /* Pomegranate Red (Premium Accents) */
  --color-bg: #fafaf5;             /* Warm off-white (Creamy soil/paper base) */
  --color-bg-dark: #121412;        /* Elegant Dark Forest/Charcoal (Hero/Footer) */
  --color-surface: #ffffff;        /* Pure white for cards/surfaces */
  --color-text: #1c1c1c;           /* Charcoal for high legibility text */
  --color-text-muted: #6b7280;     /* Muted grey for descriptions */
  --color-border: #e5e7eb;         /* Light grey for structure dividers */
  
  /* Fonts */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-arabic: 'Cairo', sans-serif;
  
  /* Typography Scale */
  --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;
  --text-hero: 4rem;
  
  /* Spacing System */
  --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;

  /* Elevation & Borders */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(18, 20, 18, 0.8);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(12px);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
