* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #2c1810;
  color: #faf8f5;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-style: italic;
  opacity: 0.8;
}

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

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.8rem;
  color: #2c1810;
  border-bottom: 2px solid #d4a574;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.3rem;
  color: #5a3825;
  margin-bottom: 1rem;
}

.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category h3 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 1.5rem;
}

.menu-item {
  margin-bottom: 1.75rem;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-item-with-image {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.menu-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.menu-item-content {
  flex: 1;
  min-width: 0;
}

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

.menu-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.menu-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-item-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.menu-item-variants {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.menu-item-variants li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.25rem 0;
}

.variant-name {
  font-size: 0.95rem;
  color: #444;
}

.variant-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

#about p,
#contact p {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #2c1810;
  color: #faf8f5;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  .menu-item-header {
    flex-direction: column;
  }

  .menu-item-price {
    margin-left: 0;
    margin-top: 0.25rem;
  }
}
