/* Variables for Terra Horizon */
:root {
  /* Color Palette */
  --color-primary: #1F5E3B;
  --color-primary-dark: #15452b;
  --color-secondary: #3A7D44;
  --color-cream: #F7F3EA;
  --color-white: #FFFFFF;
  --color-black: #111111;
  --color-gray: #707070;
  --color-light-gray: #EAEAEA;
  --color-background: var(--color-cream);
  --color-text: var(--color-black);
  --color-text-muted: var(--color-gray);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --spacing-xxl: 12rem;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 8px 24px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 16px 48px rgba(17, 17, 17, 0.12);
  
  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-medium: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Layout */
  --container-width: 1440px;
  --container-padding: 2rem;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 4rem;
  }
}
