body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #89cff0 0%, #b3e5fc 100%);
  color: #333;
}
.menu-container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
}
.menu-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.menu-header h1 {
  font-size: 3em;
  color: #4682b4;
  margin-bottom: 10px;
}
.language-selector {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1em;
}
.menu-header p {
  font-size: 1.2em;
  color: #555;
}
.menu-section {
  margin-bottom: 30px;
}
.menu-section h2 {
  font-size: 2em;
  background: linear-gradient(to right, #4682b4, #87cefa);
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-item:last-child {
  margin-bottom: 0;
}
.menu-item h3 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}
.menu-item p {
  margin: 5px 0 0;
  font-size: 1em;
  color: #666;
}
.menu-item .price {
  font-weight: bold;
  font-size: 1.2em;
  color: #4682b4;
}
.menu-item:hover {
  background: #e6f7ff;
  transform: scale(1.02);
  transition: 0.3s;
}
