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

:root {
  /* Colors - Light Mode */
  --color-primary: #0D9488;
  --color-primary-hover: #0F766E;
  --color-accent: #D97706;
  --color-accent-hover: #B45309;
  --color-background: #F0FDFA;
  --color-backgroundAlt: #FFFFFF;
  --color-text: #134E4A;
  --color-textMuted: #0F766E;
  --color-textLight: #6B7280;
  --color-border: #99F6E4;
  --color-success: #059669;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 13 148 136;
  --color-accent-rgb: 217 119 6;
  
  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: Poppins, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 0.75rem;
  --radius-small: 0.375rem;
  --radius-large: 1.25rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(13, 148, 136, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(13, 148, 136, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(13, 148, 136, 0.25);
  
  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #5EEAD4;
  --color-primary-hover: #99F6E4;
  --color-accent: #FBBF24;
  --color-accent-hover: #FCD34D;
  --color-background: #042F2E;
  --color-backgroundAlt: #134E4A;
  --color-text: #CCFBF1;
  --color-textMuted: #99F6E4;
  --color-textLight: #9CA3AF;
  --color-border: #115E59;
  --color-success: #34D399;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 94 234 212;
  --color-accent-rgb: 251 191 36;
}
