/*
Theme Name: BolBol Pizzeria Theme
Author: Alireza
Description: Custom WordPress theme for BolBol Pizzeria & Grill.
Version: 1.0.0
*/
:root {
  --primary: #212121;
  --secondary: #E88003;
  --accent: #F2505D;
  --neutral: #F9F9F9;
  --contrast: #3D3D3D;

  --background: #212121;
  --foreground: #F9F9F9;
  --card: #212121;
  --card-foreground: #F9F9F9;
  --popover: #212121;
  --popover-foreground: #F9F9F9;
  --muted: #3D3D3D;
  --muted-foreground: #9CA3AF;
  --border: #3D3D3D;
  --dashed-border: #F9F9F9;
  --input: #3D3D3D;
  --ring: #E88003;
  --radius: 0.625rem;
}

/* Base styles replicating Tailwind's base layer */
@layer base {
  * {
    border-color: var(--border);
    outline-color: rgba(var(--ring), 0.5);
  }
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Work Sans', sans-serif;
}

/* Custom utility for masking images/SVGs like next/image if needed, though Tailwind mostly handles this */