/* ============================================
   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;
}
