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

:root {
  /* Colors - Light Mode */
  --color-primary: #c2410c;
  --color-primary-hover: #9a3412;
  --color-accent: #65a30d;
  --color-accent-hover: #4d7c0f;
  --color-background: #fdf8f3;
  --color-backgroundAlt: #fffaf5;
  --color-text: #1c1917;
  --color-textMuted: #57534e;
  --color-textLight: #78716c;
  --color-border: #e7e5e4;
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 194 65 12;
  --color-accent-rgb: 101 163 13;

  /* Typography */
  --font-family: Source Sans 3, system-ui, sans-serif;
  --font-display: Cormorant Garamond, Georgia, serif;
  --font-weight-heading: 600;
  --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(194, 65, 12, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(194, 65, 12, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(194, 65, 12, 0.25);

  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #fb923c;
  --color-primary-hover: #f97316;
  --color-accent: #84cc16;
  --color-accent-hover: #a3e635;
  --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: 251 146 60;
  --color-accent-rgb: 132 204 22;
}
