/* Montrealprod — CSS Variables */

:root {
  /* Color Palette */
  --forest-black: #0B1D17;
  --evergreen-shadow: #043222;
  --almond-cream: #F6E9D9;
  --white: #FFFFFF;

  /* Derived Colors */
  --evergreen-light: #065438;
  --evergreen-muted: #9FE1CB;
  --cream-dark: #E8D9C5;
  --cream-hover: #F0E0CC;

  /* Text Colors */
  --text-on-cream: #043222;
  --text-on-dark: #F6E9D9;
  --text-muted-dark: rgba(246, 233, 217, 0.6);
  --text-muted-cream: rgba(4, 50, 34, 0.7);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Font Weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

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

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 29, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(11, 29, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(11, 29, 23, 0.15);
  --shadow-xl: 0 20px 25px rgba(11, 29, 23, 0.2);

  /* Layout */
  --nav-height: 64px;
  --max-width: 1280px;
  --content-padding: var(--spacing-xl);

  /* Breakpoints (for reference in JS) */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
}

/* Dark theme adjustments (if needed in future) */
@media (prefers-color-scheme: dark) {
  :root {
    /* Override variables for dark mode if needed */
  }
}
