/* Pizza shop — warm, inviting overrides */
body { font-family: 'Georgia', serif; }

/* Hero */
.pizza-hero {
  background: linear-gradient(135deg, #c4421a 0%, #e8722a 60%, #f5a623 100%);
  color: #fff;
  padding: 80px 24px 60px;
}
.pizza-hero h1 { color: #fff; }
.pizza-hero .hero-btns .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.pizza-hero .hero-btns .btn-outline:hover {
  border-color: #fff;
}

/* Tab bar */
.tab-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Featured pizza */
.featured-pizza {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}
.pizza-img {
  font-size: 7rem;
  line-height: 1;
  flex-shrink: 0;
}
.pizza-info { flex: 1; }
.pizza-info h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.pizza-info p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }
.pizza-price { font-size: 1.1rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
@media (max-width: 600px) {
  .featured-pizza { flex-direction: column; text-align: center; padding: 24px; }
}

/* Menu */
.menu-section { background: #fff; max-width: 100%; }
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .menu-columns { grid-template-columns: 1fr; }
}
.menu-cat { font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; }
.menu-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.menu-item-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.menu-item-price { font-size: 0.85rem; font-weight: 600; color: var(--accent); }

/* Form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.info-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1rem; }
.info-card p { font-size: 0.9rem; color: var(--text-muted); }
.info-card a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* Special Offer Banner */
.special-banner {
  background: #c4421a;
  padding: 16px 24px;
}
.special-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.special-icon { font-size: 1.4rem; }
.special-text {
  font-size: 1rem;
  color: #fff;
}
.special-text strong { font-weight: 700; }
.special-btn {
  background: #fff;
  color: #c4421a;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.special-btn:hover { background: #f0f0ee; }
