body {
  margin: 0;
  padding: 0;
  background-color: #555;
  font-family: Verdana, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 0 20px;
  height: 120px;
  border-bottom: 3px solid #BBA53D;
  position: sticky; 
  top: 0;
  z-index: 20;
}

.logo img {
  height: 90px;
}

.nav-links a {
  color: #BBA53D;
  text-decoration: none;
  margin-left: 25px;
  font-size: 40px;
  padding: 10px;
  transition: 0.3s;
  font-family: Brush Script MT, cursive;
}

.nav-links a:hover {
  background: #111;
  border-radius: 8px;
}

/* dit is de code om de category bar er mooi uit te laten zien */
.category-bar {
  display: flex;
  gap: 25px;
  background: #161a1d;
  padding: 15px 40px;
  border-bottom: 1px solid #BBA53D;
  position: sticky;
  top: 120px;
  z-index: 15;
}

.category-bar a {
  text-decoration: none;
  color: #6c757d;
  font-weight: 500;
}

/* dit zorgt ervoor dat de tekst in de knopjes van de category bar van kleur veranderen */
.category-bar a:hover {
  color: #BBA53D;
}

/* dit is de stijl van de menu oftewel tekst in de article */
.menu-wrapper {
  display: flex;
  justify-content: center;
}

.menu-content {
  width: 650px;
  padding: 30px;
}

.menu-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #BBA53D;
  margin-top: 40px;
  margin-bottom: 10px;
  border-bottom: 2px solid #BBA53D;
  padding-bottom: 5px;
  position: relative; 
}

.menu-content h2::before {
  content: "";
  display: block;
  height: 180px; 
  margin-top: -180px;
  visibility: hidden;
}

.menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e0e0e0;
  padding: 18px;
  margin-top: 12px;
  border-radius: 20px;
  border-color: #BBA53D;
  border-style: solid;
  transition: all 0.2s ease;
}

.menu-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.menu-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.menu-text p {
  font-size: 13px;
  color: #333;
  margin: 5px 0 0;
}

.price {
  font-weight: 600;
  font-size: 16px;
  color: #222;
}

footer {
  background-color: #333;
  padding: 5px;
  text-align: center;
  color: #BBA53D;
}

@media (max-width: 768px) {
  .menu-content {
    width: 100%;
    padding: 20px;
  }

  .category-bar {
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 28px;
    margin-left: 15px;
    padding: 6px;
  }
}