/* Theme Colors and Design Tokens */
:root {
  /* Primary Colors */
  --color-primary: #3A5D44;
  --color-primary-light: #6b8e6b;
  --color-primary-dark: #238a33;

  /* Neutral Colors */
  --color-text-primary: #222;
  --color-text-secondary: #666;
  --color-text-tertiary: #777;
  --color-text-muted: #999;
  --color-border: #ddd;
  --color-border-light: #eee;
  --color-background: #fff;
  --color-background-light: #f9f9f9;
  --color-background-dark: #f0f0f0;

  /* Accent Colors */
  --color-accent: var(--color-primary);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-primary: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-mono: 'Fira Code', 'Consolas', monospace;

  /* Z-index */
  --z-nav: 1000;
  --z-overlay: 999;
  --z-modal: 1001;
  --z-tooltip: 1002;
}
