body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
}

.navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}
.nav-link {
  color: white !important;
  font-weight: 500;
}

.hero-section {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1500")
    fixed center/cover;
  position: relative;
}
.overlay {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  width: 100%;
  height: 100%;
}

.highlight {
  color: #c49b63;
}
.btn-main {
  background: #c49b63;
  color: white;
  border: none;
  transition: 0.3s;
}
.btn-main:hover {
  background: #a67c4d;
  transform: scale(1.05);
}

/* Animation Classes */
.menu-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px 20px;
    transition: 0.4s all ease;
    cursor: pointer;
}
.menu-item:hover {
    border-color: #c49b63;
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(196, 155, 99, 0.2);
}
.menu-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 3px solid #c49b63;
  margin-bottom: 20px;
}
.show-element {
  opacity: 1;
  transform: translateY(0);
}

.price {
  color: #c49b63;
  font-size: 1.2rem;
  font-weight: bold;
}
.filter-btn.active {
  background: #c49b63;
  border-color: #c49b63;
}
