/* Forest & Food Fixation - Design System Variables */

:root {
  /* Color Palette - Rustic/Vintage */
  --color-bg: #F5F0E8;
  --color-bg-alt: #EDE6D9;
  --color-primary: #5C4033;
  --color-accent: #8B5A2B;
  --color-forest: #2D4A3E;
  --color-forest-light: #3D5A4E;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-cream: #FDF8F0;
  --color-warm-white: #FFFEF9;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-parallax: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(92, 64, 51, 0.1);
  --shadow-medium: 0 8px 40px rgba(92, 64, 51, 0.15);
  --shadow-strong: 0 12px 60px rgba(92, 64, 51, 0.2);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Z-indices */
  --z-gallery: 1;
  --z-overlay: 10;
  --z-nav: 100;
}
