body {
  font-family: "Poppins", sans-serif;
  background-color: #fff8f0;
  color: #333;
  padding: 30px;
  max-width: 900px;
  margin: auto;
  line-height: 1.5;
}

h1 {
  text-align: center;
  font-size: 36px;
  color: #b23a48;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px #e5c4b1;
}

h2 {
  color: #444;
  font-size: 24px;
  margin-top: 40px;
  border-left: 6px solid #f9a825;
  padding-left: 12px;
}

.menu-section {
  margin-top: 20px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.menu-item:hover {
  transform: scale(1.02);
}

.menu-item img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.item-title {
  font-weight: 600;
  font-size: 17px;
  color: #333;
  margin: 0;
  margin-bottom: 4px;
}

.price {
  float: right;
  color: #2e7d32;
  font-weight: 500;
  font-size: 15px;
}

.item-desc {
  font-size: 14px;
  color: #666;
  margin: 0;
}

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

  .menu-item img {
    margin-bottom: 10px;
  }

  .price {
    display: block;
    margin-top: 5px;
    float: none;
  }
}
