body {
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Menu Section Title */
#menu h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* Menu Items */
.menu-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Item Text */
.menu-item div {
  padding: 1rem;
}

.menu-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 0.95rem;
  color: #555;
}

/* Category-based background color accents */
.menu-item[data-category="breakfast"] {
  border-top: 4px solid #ffcc00;
}

.menu-item[data-category="lunch"] {
  border-top: 4px solid #ff6666;
}

.menu-item[data-category="dinner"] {
  border-top: 4px solid #66b3ff;
}

.menu-item[data-category="dessert"] {
  border-top: 4px solid #cc99ff;
}
.menu-category {
  margin-top: 3rem;
}

.menu-category h3 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

.filter-buttons a {
  background: #eee;
  color: #333;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  margin: 0.5rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.filter-buttons a:hover {
  background: #000;
  color: #fff;
}


