/* ============================================
   Theme: Tavernista
   
   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: #4D7C0F;
  --color-accent-hover: #3F6212;
  --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: 77 124 15;
  
  /* 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;
}
