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

:root {
  /* Colors - Light Mode */
  --color-primary: #DB2777;
  --color-primary-hover: #BE185D;
  --color-accent: #A855F7;
  --color-accent-hover: #9333EA;
  --color-background: #FFFBFC;
  --color-backgroundAlt: #FDF2F8;
  --color-text: #1F1520;
  --color-textMuted: #6B5260;
  --color-textLight: #9D8A94;
  --color-border: #FBCFE8;
  --color-success: #059669;
  --color-error: #E11D48;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 219 39 119;
  --color-accent-rgb: 168 85 247;
  
  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: Playfair Display, Georgia, serif;
  --font-weight-heading: 600;
  --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(219, 39, 119, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(219, 39, 119, 0.35);
  --shadow-hover: 0 20px 50px -15px rgba(168, 85, 247, 0.2);
  
  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #F472B6;
  --color-primary-hover: #F9A8D4;
  --color-accent: #C084FC;
  --color-accent-hover: #D8B4FE;
  --color-background: #1A1318;
  --color-backgroundAlt: #2D1F28;
  --color-text: #FDF2F8;
  --color-textMuted: #D4B8C8;
  --color-textLight: #B89AAA;
  --color-border: #4C2D3D;
  --color-success: #34D399;
  --color-error: #FB7185;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 244 114 182;
  --color-accent-rgb: 192 132 252;
}
