.food-header {
      text-align: center;
      font-size: 3rem;
      font-weight: bolder;
      color: #fba506;
      margin-top: 15px;
      margin-bottom: 50px;
}

/* General Reset */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}


h1 {
  margin: 0;
}
h2 {
  color: blue;
  font-weight: bold;
}
p {
  font-style: italic;

}

.menu-category {
  margin: 2rem auto;
  max-width: 800px;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-category h2 {
  border-bottom: 2px solid #ff6347;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.description {
  font-size: 0.9rem;
  color: #666;
}

.price {
  font-weight: bold;
  color: rgb(5, 5, 212);;
}

/* Responsive Design */
@media (max-width: 600px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    margin-top: 0.5rem;
  }
}
