/* ==========================================================================
   PIZZERÍA BELLO SABOR - STYLE SYSTEM
   Modern, Responsive, Glassmorphic, and Auto Dark/Light Mode.
   ========================================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Design Tokens - Light Mode Default */
  --bg-primary: hsl(24, 25%, 97%);
  --bg-secondary: hsl(24, 20%, 93%);
  --bg-surface: hsla(24, 30%, 100%, 0.75);
  --bg-surface-opaque: hsl(24, 30%, 100%);
  --border-color: hsla(24, 15%, 10%, 0.08);
  --border-hover: hsla(12, 70%, 45%, 0.2);
  
  --text-primary: hsl(24, 25%, 12%);
  --text-secondary: hsl(24, 15%, 35%);
  --text-muted: hsl(24, 10%, 55%);
  --text-light: hsl(24, 25%, 95%);

  --color-primary: hsl(12, 75%, 45%);       /* Terracotta Tomato Red */
  --color-primary-hover: hsl(12, 80%, 38%);
  --color-secondary: hsl(145, 40%, 25%);    /* Fresh Basil Green */
  --color-secondary-hover: hsl(145, 45%, 20%);
  --color-accent: hsl(40, 85%, 55%);        /* Rich Mozzarella Gold */
  --color-accent-hover: hsl(40, 95%, 48%);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-inset: inset 0 2px 4px rgba(255, 255, 255, 0.8);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(180, 100, 50, 0.08);
  --blur-val: 12px;
  
  --font-family-sans: 'Outfit', sans-serif;
  --font-family-serif: 'Playfair Display', serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --max-width-content: 1200px;
}

/* Automatic Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: hsl(12, 10%, 7%);
    --bg-secondary: hsl(12, 12%, 11%);
    --bg-surface: hsla(12, 12%, 13%, 0.7);
    --bg-surface-opaque: hsl(12, 12%, 13%);
    --border-color: hsla(12, 20%, 90%, 0.07);
    --border-hover: hsla(40, 85%, 55%, 0.25);
    
    --text-primary: hsl(24, 20%, 93%);
    --text-secondary: hsl(24, 12%, 75%);
    --text-muted: hsl(24, 8%, 55%);
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    
    --glass-bg: rgba(18, 15, 14, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  }
}

/* Force Light / Dark via class overrides (if needed by toggler) */
[data-theme="light"] {
  --bg-primary: hsl(24, 25%, 97%);
  --bg-secondary: hsl(24, 20%, 93%);
  --bg-surface: hsla(24, 30%, 100%, 0.75);
  --bg-surface-opaque: hsl(24, 30%, 100%);
  --border-color: hsla(24, 15%, 10%, 0.08);
  --border-hover: hsla(12, 70%, 45%, 0.2);
  --text-primary: hsl(24, 25%, 12%);
  --text-secondary: hsl(24, 15%, 35%);
  --text-muted: hsl(24, 10%, 55%);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(180, 100, 50, 0.08);
}

[data-theme="dark"] {
  --bg-primary: hsl(12, 10%, 7%);
  --bg-secondary: hsl(12, 12%, 11%);
  --bg-surface: hsla(12, 12%, 13%, 0.7);
  --bg-surface-opaque: hsl(12, 12%, 13%);
  --border-color: hsla(12, 20%, 90%, 0.07);
  --border-hover: hsla(40, 85%, 55%, 0.25);
  --text-primary: hsl(24, 20%, 93%);
  --text-secondary: hsl(24, 12%, 75%);
  --text-muted: hsl(24, 8%, 55%);
  --glass-bg: rgba(18, 15, 14, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--text-light);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.75rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-primary-hover); }

/* Layout Grid Utilities */
.container {
  width: 90%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 2rem 0;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-val));
  -webkit-backdrop-filter: blur(var(--blur-val));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-val));
  -webkit-backdrop-filter: blur(var(--blur-val));
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-family-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.logo span {
  color: var(--text-primary);
  margin-left: 0.3rem;
}

.logo-emoji {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* Theme Toggle button */
.theme-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.theme-btn:hover {
  background-color: var(--border-color);
  color: var(--color-primary);
}

/* Call to Action Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-family-sans);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(182, 48, 36, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 48, 36, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--color-accent);
  color: hsl(24, 25%, 10%);
  box-shadow: 0 4px 15px rgba(229, 169, 59, 0.3);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* Menu Burger Button for Mobile */
.burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(182, 48, 36, 0.08) 0%, transparent 70%);
  border-radius: var(--border-radius-full);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(40, 82, 56, 0.08) 0%, transparent 70%);
  border-radius: var(--border-radius-full);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width-content);
  width: 90%;
  z-index: 10;
}

.hero-content {
  max-width: 550px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--border-hover);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Dynamic CSS-based Pizza Illustration / Mock Visual */
.hero-pizza-art {
  width: 380px;
  height: 380px;
  border-radius: var(--border-radius-full);
  background: radial-gradient(circle, hsl(39, 90%, 55%) 60%, hsl(20, 60%, 40%) 75%, hsl(15, 60%, 25%) 90%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 50px rgba(229,169,59,0.3);
  position: relative;
  animation: rotatePizza 60s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-pizza-art::before {
  content: '🍕';
  font-size: 200px;
  position: absolute;
  opacity: 0.95;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}

@keyframes rotatePizza {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Sections Base */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Specialties / Cards */
.specialty-card {
  text-align: center;
  position: relative;
  padding: 3rem 2rem 2rem 2rem;
}

.specialty-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-full);
  background: var(--color-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: -5rem auto 1.5rem auto;
  box-shadow: 0 8px 25px rgba(182, 48, 36, 0.35);
  border: 4px solid var(--bg-primary);
}

.specialty-title {
  margin-bottom: 0.8rem;
}

/* About / Story section on index */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.about-highlights {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-item-icon {
  color: var(--color-primary);
  font-size: 1.3rem;
  line-height: 1;
  background: var(--border-hover);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
}

.about-item-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* Ingredients Grid */
.ingredient-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ingredient-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

/* Menu Page Styles */
.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-tab:hover,
.menu-tab.active {
  background-color: var(--color-primary);
  color: var(--text-light);
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(182, 48, 36, 0.2);
}

.menu-section {
  margin-bottom: 4rem;
}

.menu-section-title {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.menu-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.menu-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.menu-item-info {
  flex-grow: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.menu-item-price {
  font-family: var(--font-family-sans);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.15rem;
}

.menu-item-ingredients {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  height: 250px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.gallery-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(45deg, var(--bg-secondary), var(--bg-surface-opaque));
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 15, 14, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--text-light);
  text-align: center;
}

.gallery-overlay h4 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-overlay p {
  color: var(--text-light);
  font-size: 0.9rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.gallery-card:hover .gallery-content {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay h4,
.gallery-card:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Modal lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-placeholder {
  font-size: 10rem;
  padding: 3rem;
  background: var(--bg-surface-opaque);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  font-family: var(--font-family-serif);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Blog Page Styles */
.blog-search-bar {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  display: flex;
  gap: 0.8rem;
}

.input-field {
  flex-grow: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius-full);
  outline: none;
  transition: var(--transition-fast);
  font-family: var(--font-family-sans);
}

.input-field:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--border-hover);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-visual {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--bg-secondary) 100%);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}

.blog-title-link h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

.blog-title-link:hover h3 {
  color: var(--color-primary);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex-grow: 1;
}

.blog-readmore {
  margin-top: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Blog Single / Article Template */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.article-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.article-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.article-banner {
  height: 400px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  color: var(--text-primary);
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem 0;
  color: var(--text-primary);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  font-style: italic;
  margin: 2rem 0;
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.article-body ul, .article-body ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* FAQ Accordions */
.faq-filter-container {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  display: flex;
  gap: 0.8rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: var(--bg-surface);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-header-btn:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 300px; /* Adjust dynamically if needed or let JS auto-calculate */
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  background: var(--border-hover);
  padding: 0.8rem;
  border-radius: var(--border-radius-md);
  display: inline-flex;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact-details p {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--color-primary);
  color: var(--text-light);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Location Map Styles */
.map-visual-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--border-hover) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.map-visual-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px), radial-gradient(circle, var(--color-secondary) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.15;
}

.map-marker {
  font-size: 3rem;
  animation: bounce 2s infinite;
  z-index: 5;
}

.map-title {
  font-family: var(--font-family-serif);
  font-size: 1.5rem;
  margin-top: 1rem;
  z-index: 5;
}

.map-coords {
  font-size: 0.9rem;
  color: var(--text-muted);
  z-index: 5;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Legal Pages (Terms, Privacy) */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-content {
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-content p, .legal-content ul {
  margin-bottom: 1.25rem;
}

.legal-content ul {
  padding-left: 2rem;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  padding-right: 0.5rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Google Ads Transparency Banner (mandatory) */
.ads-transparency-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer styling */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-info-item {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-link {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-link:hover {
  color: var(--color-primary);
}

/* Mobile responsive fixes */
@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-pizza-art {
    width: 280px;
    height: 280px;
  }
  
  .hero-pizza-art::before {
    font-size: 150px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .burger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-surface-opaque);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
