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

:root {
  /* Colors - Light Mode */
  --color-primary: #B45309;
  --color-primary-hover: #92400E;
  --color-accent: #78350F;
  --color-accent-hover: #451A03;
  --color-background: #FFFBEB;
  --color-backgroundAlt: #FEF3C7;
  --color-text: #1C1917;
  --color-textMuted: #78716C;
  --color-textLight: #A8A29E;
  --color-border: #FDE68A;
  --color-success: #15803D;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 180 83 9;
  --color-accent-rgb: 120 53 15;
  
  /* Typography */
  --font-family: Outfit, system-ui, sans-serif;
  --font-display: Bodoni Moda, Georgia, serif;
  --font-weight-heading: 600;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 0.375rem;
  --radius-small: 0.25rem;
  --radius-large: 0.75rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(180, 83, 9, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(180, 83, 9, 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: #F59E0B;
  --color-primary-hover: #FBBF24;
  --color-accent: #D97706;
  --color-accent-hover: #F59E0B;
  --color-background: #1C1917;
  --color-backgroundAlt: #292524;
  --color-text: #FEF3C7;
  --color-textMuted: #D6D3D1;
  --color-textLight: #A8A29E;
  --color-border: #44403C;
  --color-success: #4ADE80;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 245 158 11;
  --color-accent-rgb: 217 119 6;
}
