/* start  the  main menu */
.the__main__menu {
  margin-bottom: 4rem;
}
.main__subtitle {
  color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 1.6rem;
  margin-top: 1rem;
}

/* Category pill nav - categories are DB-driven (menu.js), so the old
   hardcoded per-category sections can't stand in for this anymore. */
.category__nav {
  margin-bottom: 3rem;
}
.category__nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 0;
  border-bottom: none;
}
.category__chip {
  display: inline-flex;
  align-items: center;
  width: auto;
  flex: 0 0 auto;
  gap: 0.6rem;
  color: var(--body-color);
  font-family: var(--primary-font);
  font-size: 1.4rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}
.category__chip:hover {
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.35);
}
.category__chip.active {
  color: var(--white-color);
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.category__chip__icon {
  font-size: 1.8rem;
}
/* start menu hero */
.main__menu {
  background-image: url(../images/bg/menuHero.png);
  background-position: center;
  background-attachment: scroll;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 8rem;
  overflow: hidden;
}
.main__menu::after {
  /* Two stacked layers: the vertical one fully blacks out the top band
     (behind the transparent, position:fixed real navbar) and the bottom
     band (above the category pills section) all the way across, at full
     opacity, regardless of the horizontal layer beneath it - that's what
     keeps menuHero.png's own baked-in nav/pill row from showing through
     the real (transparent-background) nav and the gap above the real
     pills section. The horizontal layer then shapes the readable-text
     panel on the left while leaving the food photography clear on the
     right, in the vertical band between those two. */
  background: linear-gradient(
      180deg,
      rgba(10, 9, 8, 1) 0%,
      rgba(10, 9, 8, 1) 12%,
      rgba(10, 9, 8, 0) 22%,
      rgba(10, 9, 8, 0) 76%,
      rgba(10, 9, 8, 1) 88%,
      rgba(10, 9, 8, 1) 100%
    ),
    linear-gradient(
      100deg,
      rgba(10, 9, 8, 1) 0%,
      rgba(10, 9, 8, 1) 48%,
      rgba(10, 9, 8, 0.65) 64%,
      rgba(10, 9, 8, 0.2) 88%,
      rgba(10, 9, 8, 0.05) 100%
    );
}
.main__menu .container {
  position: relative;
  z-index: 3;
}

.menu__hero__content {
  max-width: 620px;
  text-align: left;
}

.menu__hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--header-font);
  font-size: 2.8rem;
  color: var(--main-color);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.menu__hero__eyebrow::before,
.menu__hero__eyebrow::after {
  content: "";
  flex: 1;
  max-width: 3.5rem;
  height: 1px;
  background-color: var(--main-color);
}

.menu__hero__content .main__p.menu__hero__title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white-color);
  text-align: left;
  text-transform: uppercase;
  margin: 0;
}

.menu__hero__divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 18rem;
  max-width: 100%;
  margin: 1.6rem 0;
}
.menu__hero__divider::before,
.menu__hero__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(177, 75, 8, 0.55);
}
.menu__hero__divider span {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  transform: rotate(45deg);
  background-color: var(--main-color);
}

.menu__hero__content .main__subtitle.menu__hero__desc {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #d8d3ce;
  max-width: 460px;
  margin: 0 0 2.4rem;
}

.menu__hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.menu__hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.6rem 2.6rem;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu__hero__btn .material-symbols-outlined {
  font-size: 1.9rem;
}
.menu__hero__btn--primary {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--white-color);
}
.menu__hero__btn--primary:hover {
  background-color: transparent;
  border-color: var(--white-color);
  color: var(--white-color);
}
.menu__hero__btn--secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white-color);
}
.menu__hero__btn--secondary:hover {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--bg-color);
}

@media screen and (max-width: 1200px) {
  .menu__hero__content .main__p.menu__hero__title {
    font-size: 7.4rem;
  }
}
@media screen and (max-width: 992px) {
  .menu__hero__content .main__p.menu__hero__title {
    font-size: 6.2rem;
  }
}
@media screen and (max-width: 768px) {
  .main__menu {
    height: auto;
    min-height: 100vh;
    padding: 14rem 0 4rem;
  }
  .menu__hero__eyebrow {
    font-size: 2.2rem;
  }
  .menu__hero__content .main__p.menu__hero__title {
    font-size: 5rem;
  }
  .menu__hero__content .main__subtitle.menu__hero__desc {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .menu__hero__content {
    max-width: 620px;
    text-align: center;
    }
  .menu__hero__eyebrow {
        margin: auto !important;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
  .menu__hero__content .main__p.menu__hero__title {
    font-size: 3.8rem;
    text-align: center !important;
    padding:  .2rem 0;
  }
   .main__menu {
    height: auto !important;
    min-height: auto !important;
  }
  .menu__hero__divider {
    width: 14rem;
    margin: auto;
  }
  .menu__hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .menu__hero__btn {
    justify-content: center;
  }
}
/* end menu hero */

/* start  the  main menu */

/*  */

.border__b {
  border-bottom: 1px solid var(--main-color);
}
@keyframes slideFromTop {
  0% {
    transform: translateY(40px);
    opacity: 0.1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.lazy-img {
  filter: blur(6px);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.lazy-img.loaded {
  filter: blur(0);
  opacity: 1;
}

.menu__img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  cursor: pointer;
}
.menu__title {
  text-align: center;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding: 3rem 0;
  font-family: var(--main-font);
  font-size: 3rem;
  color: var(--main-color);
  letter-spacing: 1px;
}
.menu__des {
  padding: 3rem;
}
.food__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__content {
  color: var(--white-color);
  font-size: 2rem;
  font-style: italic;
}
.cart__btn {
  background-color: transparent !important;
  outline: none;
  border: none;
  cursor: pointer;
  /* padding: 2rem; */
  font-size: 2rem;
  z-index: 2;
}
.cart__btn {
  color: var(--main-color);
}

.food__description p {
  font-size: 1.4rem;
  color: var(--white-color);
}

/*  */

/* start asian header  */

.asianBg {
  background-image: url(../images/ahtziri-lagarde-BM8-NSCj9yA-unsplash-1920x1280-1.jpg);
  z-index: 1;
}

.header-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0e0d0a83;
  z-index: -1;
}

.asianBg h5 {
  color: var(--white-color);
}

/* end asian header  */

/* start dessert header  */

.dessertBg {
  background-image: url(../images/food-new/Chocolate\ Covered\ Strawberry\ Cake.jfif);
  background-image: url(../images/Chocolate\ waffles\ s.png);
  position: relative;
}
.dessertBg::after {
  content: "";
  inset: 0;
  background-color: #0e0d0a78;
  z-index: 2;
}
/* end dessert header  */

/* start notificatin section */
.notification {
  position: fixed;
  bottom: 10%;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}
.notification__card {
  height: 80vh;
  width: 300px;
  background-color: #0e0d0ad7;
  margin: auto 0;
  transform: translateX(300px);
  transition: all 3s;
  text-align: center;
}
.notification__img {
  height: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification__img img {
  height: 90%;
  width: 90%;
  border-radius: 50%;
}
.notification__plusOne {
  font-size: 4rem;
}
.notification__details {
  font-size: 2.4rem;
  color: var(--white-color);
  font-weight: bold;
}
.notification__des {
  font-size: 1.4rem;
}
.added__cart p {
  font-size: 1.8rem;
}
.added__cart span {
  font-size: 3.6rem;
  color: var(--main-color);
}

/* end notificatin section */
@media screen and (max-width: 1200px) {
  .menu__img {
    width: 250px;
    height: 250px;
  }
  .menu__des .menu__line {
    width: 30%;
  }
  .menu__content {
    font-size: 3.5rem;
  }
  .cart__btn {
    font-size: 3.5rem;
  }

  .food__description p {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 992px) {
  .menu__img {
    width: 220px;
    height: 220px;
  }

  .menu__des .menu__line {
    width: 20%;
  }
  .menu__content {
    font-size: 2.5rem;
  }
  .cart__btn {
    font-size: 2.5rem;
  }

  .food__description p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .menu__img {
    width: 200px;
    height: 200px;
  }
  .menu__des .menu__line {
    width: 10%;
  }
  .menu__content {
    font-size: 2rem;
  }
  .cart__btn {
    font-size: 2rem;
  }

  .food__description p {
    font-size: 1.6rem;
  }
  .notification__card {
    width: 230px;

    transform: translateX(200px);
  }
  .notification__img {
    height: 45%;
  }
  .notification__img img {
    height: 70%;
    width: 70%;
  }
}

@media screen and (max-width: 576px) {
  .menu__img__div {
    display: flex;
    justify-content: center;
  }
  .food__details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .menu__des .menu__line {
    width: 30%;
  }
  .menu__content {
    font-size: 2.8rem;
  }
  .cart__btn {
    font-size: 2.8rem;
  }
  .notification__card {
    width: 210px;
  }

  .food__description p {
    font-size: 2.2rem;
  }
}
