body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: bisque;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #4e342e;
  color: #fff;
  flex-wrap: wrap;
}

nav span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffa726;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffa726;
}

#ordernow {
  background-color: #ffa726;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #4e342e;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#ordernow:hover {
  background-color: #ff7043;
  color: #fff;
}

/* Menu Banner */
.menu-header {
  position: relative;
  width: 100%;
  max-height: 550px;
  overflow: hidden;
}

.menu-header img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.menu-header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Menu Icons */
.menu-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px;
}

.menu-icons img {
  width: 80px;
  height: 70px;
}



/* Menu Items */
.menu-section {
  padding: 50px 20px;
}

.menu-section h2 {
  font-size: 2.5rem;
  color: #e65100;
  margin: 30px 0 20px;
  text-align: center;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.menu-card {
  background-color: #fff3e0;
  border: 2px solid #ffa726;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-card h3 {
  font-size: 1.4rem;
  color: #4e342e;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e65100;
}

/* Footer */
footer {
  background-color: #4e342e;
  color: #fff;
  text-align: center;
  padding: 30px;
  margin-top: 50px;
}




.menu-icons img {
  width: 80px;
  height: 70px;
  transition: transform 0.4s ease, filter 0.3s ease;
  cursor: pointer;
}

.menu-icons img:hover {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .menu-header h1 {
    font-size: 2.5rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 10px;
  }

  .menu-card {
    width: 90%;
  }

  .menu-section h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 500px) {
    .menu-icons img {
 display: none;
}
}
