/* The Wooden Spoon - Modern Gastropub/Farmhouse Theme */

/* CSS Custom Properties with Fallbacks for Older Browsers */
:root {
  --primary-color: #9c1c34;
  --primary: #9c1c34;
  --accent-color: #bfa14a;
  --background: #f8f6f3;
  --surface: #fff;
  --surface-light: #faf9f7;
  --charcoal: #2d2d2d;
  --taupe: #b8a99a;
  --wood-brown: #7c5c3e;
  --font-primary: 'Prata', serif;
  --font-secondary: 'Open Sans', sans-serif;
  --radius: 32px;
  --shadow: 0 4px 16px rgba(44,38,33,0.08);
  --text-primary: #2d2d2d;
  --text-secondary: #666;
  --border-light: rgba(184, 169, 154, 0.3);
}

/* Fallback values for browsers that don't support CSS Custom Properties */
html {
  /* Fallback colors for older browsers */
  color: #2d2d2d;
  background: #f8f6f3;
}
