/* ===================
menu css 
====================== */

.menu-wrapper .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all 0.5s ease-in-out;
}

.menu-wrapper .menu-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.menu-wrapper .menu-item-img {
  border-radius: 50px;
  padding: 5px;
  border: 2px dashed #008080;
}

.menu-wrapper .menu-item-img img {
  border-radius: 50px;
  object-fit: cover;
  width: 60px;
  height: 60px;
}

.menu-wrapper .menu-content {
  margin-left: 20px;
  margin-right: 20px;
}

.menu-wrapper .menu-price span {
  font-size: 20px;
  color: #008080;
  font-weight: 500;
}

.menu-wrapper .menu-title:hover {
  transition: all 0.5s ease-in-out;
  color: #008080;
}

.filter-controls {
  margin-bottom: 50px;
  text-align: center;
}

.filter-controls ul li {
  display: inline-block;
  text-transform: uppercase;
  margin: 0 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.filter-controls ul li:hover {
  color: #008080;
}

.filter-controls .active {
  color: #008080;
}

.menu-area2 .menu-wrapper .menu-item {
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 30px;
}

.menu-area3 .menu-wrapper .menu-item {
  box-shadow: none;
  border: 2px dashed #008080;
}

.menu-area3 .menu-wrapper .menu-item-img {
  border: none;
  padding: 0;
}

@media all and (max-width: 992px) {
  .menu-wrapper .menu-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px;
  }
}
.menu-card > div {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.menu-card > div.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.menu-card > a > h3 {
  font-size: 1.5rem;
  background: black;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin: 20px 0px;
  padding: 15px 20px;
  letter-spacing: normal;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  overflow: hidden;
}

.menu-card > a > h3:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-card > a > h3::after {
  content: "\25BC";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.menu-card > a > h3.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.menu-card > a {
  width: 100%;
  text-decoration: none;
}

.menu-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.menu-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-price {
  color: #008080;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Image Popup Styles */
.menu-item-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-item-img:hover {
  transform: scale(1.05);
}

.image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

.popup-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.close-popup {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .menu-item > div {
    display: block !important;
    text-align: -webkit-center;
  }

  .menu-wrapper .menu-item-img {
    justify-content: center;
    width: fit-content;
    height: auto;
  }

  .popup-content {
    max-width: 95%;
  }
}
