.menuIntro {
  height: 15rem;
  width: 100vw;
  position: relative;

}

.menuIntro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

}

.menuTitle {
  position: absolute;
  height: 15rem;
  width: 60%;
  background: maroon;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 2rem;
  border-top-right-radius: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: rem;
  text-align: center;


}

.menuTitle h1 {
  font-size: clamp(2rem, 5vw + 1px, 4rem);


}

.menuTitle p {
  font-size: clamp(1.1rem, 2vw + 1px, 1.5rem);
  font-weight: 500;

}

.searchBar {
  height: 15rem;
  width: 100vw;
  display: flex;
  align-items: last baseline;
  justify-content: center;
}

.searchDiv {

  background: white;
  height: 3rem;
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
  gap: .2rem;
  border-radius: 2rem;
  border: 3px solid maroon;
}

.searchDiv i {
  font-size: clamp(1rem, 2vw + 1px, 1.2rem);
  color: maroon;
  width: 5%;
}

.searchBar input {
  height: 2.5rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 500;
  color: maroon;
  outline: none;
  border: none;
  width: 95%;


}

.searchBar input::placeholder {
  color: maroon;

}

.FoodCategory {
  position: relative;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;

}

.menuContainer {
  position: relative;
  width: 80%;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;


}

.menuContainer h1 {
  width: 100%;
  color: maroon;
}

.menuContainer .specificFood {
  width: 25rem;
  height: rem;
  border-radius: 2rem;
  border: 2px solid maroon;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 2rem;
  gap: 1rem;
}

.foodImg {
  position: relative;
  display: block;
  min-width: 10rem;
  flex: 0;
  height: 10rem;
  border-radius: 1.5rem;
  border: 2px solid maroon;

}

.foodImg img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;


}

.specificFood h2 {
  font-size: clamp(1rem, 2vw + 1px, 1.5rem);
  font-weight: 400;
  min-width: 10rem;
  flex: 1;
  overflow-wrap: break-word;


}

.price {
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 400;
}

footer {
  margin-top: 5rem;

}


@media (max-width:1280px) {
  .specificFood {
    flex: 1;

  }

  .foodImg {
    min-width: 8rem;
    height: 8rem;
  }
}

@media (max-width:1024px) {
  .menuTitle {
    width: 70%;
  }



}

@media (max-width:768px) {
  .menuTitle {
    width: 75%;
    height: 12rem;
  }

  .searchBar {
    height: 12rem;
  }

  .searchDiv {
    width: 90%;

  }

  .foodImg {
    min-width: 5rem;
    height: 5rem;
  }

  .specificFood {
    width: 10rem;
    min-width: 8rem;
    border: none !important;
    padding: 1rem !important;




  }

  .price {
    margin: 0 !important;
  }

  .menuContainer {
    border: 2px solid maroon;
    margin-top: .5rem;
    margin-bottom: .5rem;
    border-radius: 1rem;
    width: 95%;
    overflow: hidden;
  }


}

@media (max-width:640px) {
  .menuTitle {
    width: 80%;
  }


}

@media (max-width:400px) {
  .menuContainer {
    padding: .5rem;
  }

}