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

:root {
  /* Colors - Light Mode */
  --color-primary: #9D7E6F;
  --color-primary-hover: #8A6B5C;
  --color-accent: #7C9082;
  --color-accent-hover: #6B7F71;
  --color-background: #FDF8F6;
  --color-backgroundAlt: #FFFFFF;
  --color-text: #2D2926;
  --color-textMuted: #6B5F58;
  --color-textLight: #8C7E75;
  --color-border: #E8DDD8;
  --color-success: #5D8A66;
  --color-error: #C4605C;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 157 126 111;
  --color-accent-rgb: 124 144 130;
  
  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: Cormorant Garamond, Georgia, serif;
  --font-weight-heading: 500;
  --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(157, 126, 111, 0.12);
  --shadow-button: 0 10px 30px -10px rgba(157, 126, 111, 0.3);
  --shadow-hover: 0 20px 50px -15px rgba(157, 126, 111, 0.18);
  
  /* Button Style */
  --button-radius: 9999px;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #D4B5A5;
  --color-primary-hover: #E5C9BB;
  --color-accent: #A8C4AE;
  --color-accent-hover: #BDD4C3;
  --color-background: #1A1614;
  --color-backgroundAlt: #252220;
  --color-text: #F5EBE6;
  --color-textMuted: #C9BDB5;
  --color-textLight: #A89B93;
  --color-border: #3D3633;
  --color-success: #7CB686;
  --color-error: #E08D8A;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 212 181 165;
  --color-accent-rgb: 168 196 174;
}
