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

:root {
  /* Colors - Light Mode */
  --color-primary: #92400E;
  --color-primary-hover: #78350F;
  --color-accent: #92400E;
  --color-accent-hover: #78350F;
  --color-background: #FEF3C7;
  --color-backgroundAlt: #FFFBEB;
  --color-text: #1C1917;
  --color-textMuted: #57534E;
  --color-textLight: #6B5E56;
  --color-border: #D6D3D1;
  --color-success: #16A34A;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 146 64 14;
  --color-accent-rgb: 146 64 14;
  
  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: Playfair Display, serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 0.5rem;
  --radius-small: 0.25rem;
  --radius-large: 0.75rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(146, 64, 14, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(146, 64, 14, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(146, 64, 14, 0.25);
  
  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #D97706;
  --color-primary-hover: #B45309;
  --color-accent: #FBBF24;
  --color-accent-hover: #F59E0B;
  --color-background: #1C1917;
  --color-backgroundAlt: #292524;
  --color-text: #FAFAF9;
  --color-textMuted: #D6D3D1;
  --color-textLight: #A8A29E;
  --color-border: #44403C;
  --color-success: #4ADE80;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 217 119 6;
  --color-accent-rgb: 251 191 36;
}
