/* ECOPlan - CSS Variables */
/* Based on ICLEI specifications and minimals.cc design inspiration */

:root {
  /* Primary Colors from Document */
  --primary-color: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;

  --secondary-color: #0d47a1;
  --secondary-dark: #08306b;
  --secondary-light: #1565c0;

  --accent-color: #81c784;
  --accent-light: #a5d6a7;
  --accent-dark: #66bb6a;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-gray-50: #fafafa;
  --bg-gray-100: #f5f5f5;
  --bg-gray-200: #eeeeee;
  --bg-gray-300: #e0e0e0;

  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-disabled: #9e9e9e;
  --text-white: #ffffff;

  /* Status Colors */
  --success-color: #2e7d32;
  --warning-color: #f57c00;
  --error-color: #d32f2f;
  --info-color: #0288d1;

  /* Status Indicators */
  --status-green: #4caf50;
  --status-yellow: #ffc107;
  --status-red: #f44336;

  /* Border & Dividers */
  --border-color: #e0e0e0;
  --border-light: #f0f0f0;
  --divider-color: rgba(0, 0, 0, 0.12);

  /* Shadows -  */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;

  /* Typography - Open Sans */
  --font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;

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

  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

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

  /* Layout */
  --header-height: 64px;
  --sidebar-width: 280px;
  --sidebar-collapsed: 80px;
  --notification-width: 360px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}
