/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  padding: 20px;
}

/* Headings */
h1 {
  text-align: center;
  color: #ffc107;
  margin-bottom: 30px;
}

/* Menu Section Container */
.menu-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

/* Menu Card */
.menu-card {
  flex: 0 0 300px;
  background-color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

/* Image Styling */
.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ffc107;
}

/* Info Section */
.menu-info {
  padding: 15px;
  text-align: center;
}

.menu-info h2 {
  margin: 10px 0;
  font-size: 22px;
  color: #ffffff;
}

.menu-info p {
  margin: 5px 0;
  color: #ccc;
  font-size: 14px;
}

.calories {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* Order Controls (+ - buttons and quantity) */
.order-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.order-controls button {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.order-controls button:hover {
  background-color: #ff9800;
}

.quantity {
  font-size: 16px;
  width: 20px;
  display: inline-block;
  color: #fff;
}

/* Price and Order Button */
.price {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #ffc107;
}

.order-btn {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-btn:hover {
  background-color: #ff9800;
}
