/* ============================================
   Theme: ZenFlow
   
   Customize colors, typography, and spacing below.
   Changes here affect all pages automatically.
   ============================================ */

:root {
  /* Colors - Light Mode */
  --color-primary: #15803d;
  --color-primary-hover: #166534;
  --color-accent: #92400e;
  --color-accent-hover: #78350f;
  --color-background: #f0fdf4;
  --color-backgroundAlt: #ffffff;
  --color-text: #14532d;
  --color-textMuted: #166534;
  --color-textLight: #6b7280;
  --color-border: #bbf7d0;
  --color-success: #22c55e;
  --color-error: #ef4444;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 21 128 61;
  --color-accent-rgb: 146 64 14;

  /* Typography */
  --font-family: Plus Jakarta Sans, system-ui, sans-serif;
  --font-display: Plus Jakarta Sans, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 1rem;
  --radius-small: 0.5rem;
  --radius-large: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(22, 163, 74, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(22, 163, 74, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(22, 163, 74, 0.25);

  /* Button Style */
  --button-radius: 9999px;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #4ade80;
  --color-primary-hover: #22c55e;
  --color-accent: #fbbf24;
  --color-accent-hover: #f59e0b;
  --color-background: #052e16;
  --color-backgroundAlt: #14532d;
  --color-text: #f0fdf4;
  --color-textMuted: #86efac;
  --color-textLight: #9ca3af;
  --color-border: #166534;
  --color-success: #4ade80;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 74 222 128;
  --color-accent-rgb: 251 191 36;
}
