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

:root {
  /* Colors - Light Mode */
  --color-primary: #0e7490;
  --color-primary-hover: #155e75;
  --color-accent: #4f46e5;
  --color-accent-hover: #4338ca;
  --color-background: #f0fdfa;
  --color-backgroundAlt: #ffffff;
  --color-text: #134e4a;
  --color-textMuted: #115e59;
  --color-textLight: #6b7280;
  --color-border: #99f6e4;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 14 116 144;
  --color-accent-rgb: 79 70 229;

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

  /* Spacing */
  --radius: 1.25rem;
  --radius-small: 0.75rem;
  --radius-large: 1.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(8, 145, 178, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(8, 145, 178, 0.35);
  --shadow-hover: 0 20px 50px -15px rgba(8, 145, 178, 0.2);

  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #22d3ee;
  --color-primary-hover: #06b6d4;
  --color-accent: #818cf8;
  --color-accent-hover: #6366f1;
  --color-background: #042f2e;
  --color-backgroundAlt: #134e4a;
  --color-text: #f0fdfa;
  --color-textMuted: #5eead4;
  --color-textLight: #9ca3af;
  --color-border: #0f766e;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 34 211 238;
  --color-accent-rgb: 129 140 248;
}
