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

:root {
  /* Colors - Light Mode */
  --color-primary: #881337;
  --color-primary-hover: #9F1239;
  --color-accent: #B45309;
  --color-accent-hover: #92400E;
  --color-background: #FFFBF7;
  --color-backgroundAlt: #FFF1E6;
  --color-text: #44403C;
  --color-textMuted: #78716C;
  --color-textLight: #A8A29E;
  --color-border: #F5D0C5;
  --color-success: #059669;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 136 19 55;
  --color-accent-rgb: 180 83 9;
  
  /* Typography */
  --font-family: Lato, system-ui, sans-serif;
  --font-display: Bodoni Moda, Georgia, serif;
  --font-weight-heading: 500;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 0.5rem;
  --radius-small: 0.25rem;
  --radius-large: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(136, 19, 55, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(136, 19, 55, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(180, 83, 9, 0.25);
  
  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #FB7185;
  --color-primary-hover: #FDA4AF;
  --color-accent: #F59E0B;
  --color-accent-hover: #FBBF24;
  --color-background: #1C1017;
  --color-backgroundAlt: #2D1F24;
  --color-text: #FEF2F2;
  --color-textMuted: #FECDD3;
  --color-textLight: #E7E5E4;
  --color-border: #4C1D2F;
  --color-success: #34D399;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 251 113 133;
  --color-accent-rgb: 245 158 11;
}
