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

:root {
  /* Colors - Light Mode */
  --color-primary: #7c3aed;
  --color-primary-hover: #6d28d9;
  --color-accent: #be185d;
  --color-accent-hover: #9d174d;
  --color-background: #faf5ff;
  --color-backgroundAlt: #ffffff;
  --color-text: #1e1b4b;
  --color-textMuted: #4c1d95;
  --color-textLight: #4b5563;
  --color-border: #ddd6fe;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 124 58 237;
  --color-accent-rgb: 190 24 93;

  /* Typography */
  --font-family: Nunito, system-ui, sans-serif;
  --font-display: Poppins, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 1.25rem;
  --radius-small: 0.625rem;
  --radius-large: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(139, 92, 246, 0.3);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #a78bfa;
  --color-primary-hover: #8b5cf6;
  --color-accent: #f472b6;
  --color-accent-hover: #db2777;
  --color-background: #1e1b4b;
  --color-backgroundAlt: #312e81;
  --color-text: #f5f3ff;
  --color-textMuted: #c4b5fd;
  --color-textLight: #c9ced6;
  --color-border: #4c1d95;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 167 139 250;
  --color-accent-rgb: 244 114 182;
}
