* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Header */
header {
  background-color: #ff6f61;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #ffd700;
}

.menu-page {
  padding: 60px 20px;
  background-color: #fff0f5;
}

.menu-page h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.filter {
  text-align: center;
  margin-bottom: 40px;
}

.filter button {
  border: 2px solid #ff6f61;
  background-color: #ff6f61;
  color: white;
  padding: 10px 20px;
  margin: 0 10px 10px 0;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.menu-item {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item h3 {
  margin: 15px 0 10px;
}

.menu-item p {
  color: #ff6f61;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #bebebecd;
  color: #333;
  text-align: center;
  padding: 20px 0;
}
