.food-section {
  padding: 50px 20px;
  background: #fff8f0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.food-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.food-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.food-card:hover {
  transform: translateY(-5px);
}

.food-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.food-info {
  padding: 20px;
  text-align: left;
}

.food-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1d3557;
}

.food-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.price {
  font-size: 18px;
  color: #e63946;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.order-btn {
  display: inline-block;
  background: #1d3557;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.order-btn:hover {
  background: #457b9d;
}
