:root {
  --bg: #faf6f1;
  --card-bg: #ffffff;
  --text: #2b2420;
  --muted: #6b5f56;
  --accent: #b5541b;
  --border: #e8ddd2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

header {
  background: var(--accent);
  color: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
}

header h1 {
  margin: 0 0 0.75rem 0;
  font-size: 1.8rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.75rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid #fff;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.menu-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.menu-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.menu-item-info h2 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.menu-item-info p {
  margin: 0 0 0.4rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 1rem;
}

@media (max-width: 480px) {
  .menu-item {
    flex-direction: column;
    text-align: center;
  }

  .menu-item img {
    width: 100%;
    height: 160px;
  }
}
