.menu {
  padding: 50px 20px;
  background: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.menu-category {
  background: #fff8e1;
  border: 2px solid #ffd633;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.menu-category:hover {
  transform: translateY(-5px);
}

.menu-category h3 {
  margin-bottom: 15px;
  color: #1a1a54;
  font-size: 1.4rem;
  border-bottom: 2px solid #ffd633;
  padding-bottom: 5px;
}

.menu-category ul {
  list-style: none;
  padding: 0;
}

.menu-category li {
  margin: 8px 0;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  color: #333;
}
