/* styles/variables.css — brand tokens: --color-primary #407234, --color-bg #faf7f4, fonts, spacing scale */
/* Change values here to restyle the whole site — every other stylesheet reads these variables. */

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

:root {
  /* Brand colors */
  --color-primary: #407234;
  --color-primary-rgb: 64, 114, 52;
  --color-primary-dark: #2f551f;
  --color-primary-light: #e7f0e1;
  --color-bg: #faf7f4;
  --color-surface: #ffffff;
  --color-text: #26301f;
  --color-text-muted: #5c6b57;
  --color-border: #e3ddd0;
  --color-accent: #7ca85f;

  /* Typography */
  --font-heading: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Layout */
  --container-max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(38, 48, 31, 0.08);
  --shadow-md: 0 4px 16px rgba(38, 48, 31, 0.12);
  --transition-fast: 150ms ease;
}
