.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.menu-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  width: 250px;
  background: #fff8f2;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}

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

.dish-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.price {
  color: #d62828;
  font-weight: bold;
  font-size: 18px;
}
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  cursor: pointer;
  margin-top: 15px;
  text-align: center;
}

/* 🔴 Submit Button */
.btn-red {
  background-color: #e63746;
}

/* 🟢 WhatsApp Button */
.btn-green {
  background-color: #25D366;
}

/* 🟡 Back to Home Button */
.btn-yellow {
  background-color: #fdbb2d;
  color: black;
}
