/*
Theme Name: Patronage Meats
Theme URI: https://replit.com
Author: Replit Agent
Author URI: https://replit.com
Description: A custom theme for Patronage Meats with rustic, high-end butcher aesthetics.
Version: 1.0.7
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: patronage-meats
Tags: custom-colors, custom-menu, featured-images
*/

/* CSS Variables */
:root {
  /* Cream/Paper background for rustic high-end feel */
  --background: #F2ECE4;
  --foreground: #18181B; /* Almost Black */
  
  /* Texture */
  --paper-texture: url('assets/paper-texture.png');

  /* White cards for contrast */
  --card: #FFFFFF;
  --card-foreground: #18181B;
  
  --popover: #FFFFFF;
  --popover-foreground: #18181B;

  /* Deep Red for Primary - Dried Blood/Wine */
  --primary: #923A3E;
  --primary-foreground: #FAFAFA;

  /* Dark Charcoal for Secondary */
  --secondary: #27272A;
  --secondary-foreground: #FAFAFA;

  /* Muted earthy tones */
  --muted: #E2DCD6;
  --muted-foreground: #66666B;

  --accent: #EBE5DE;
  --accent-foreground: #18181B;

  --destructive: #EF4444;
  --destructive-foreground: #FAFAFA;

  --border: #D4D4D8;
  --input: #D4D4D8;
  --ring: #923A3E;
  
  --radius: 0.5rem;
  
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Libre Baskerville', serif;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
}
