:root {
  --color: #fec302;
  --color2: #000;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 400;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

input,
textarea {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.divider {
  height: 0;
  border-bottom: 2px dashed #000;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

a.goFood {
  padding: 10px 20px;
  background: var(--color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
  transition: all 0.5s ease-in-out;
}
a.goFood:hover {
  transform: scale(1.1);
}

svg {
  transition: all 0.5s ease-in-out;
}
svg:hover {
  transform: scale(1.1);
}

button {
  cursor: pointer;
}

.active {
  display: flex !important;
}

.line {
  margin-bottom: 6px;
  width: 36px;
  height: 2px;
  background-color: var(--color);
}

.pos-r {
  position: relative;
}
.pos-r a:hover {
  text-decoration: none !important;
}

.hamburger {
  display: none;
  margin: auto 0;
}

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.items .item {
  flex: 0 0 calc(33.3333% - 24px);
  display: flex;
  flex-direction: column;
}
.items .item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  max-width: 366px;
  max-height: 320px;
}
.items .item:hover .details, .items .item:focus .details {
  opacity: 1;
}
.items .item .details {
  opacity: 0;
  border-radius: 0px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  row-gap: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease-in-out;
}
.items .item .details .price {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--color);
  border-radius: 10px;
  text-transform: capitalize;
  max-width: -moz-max-content;
  max-width: max-content;
}
.items .item .details .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  position: relative;
}
.items .item .details .name:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background-color: var(--color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

nav {
  background: #000;
}
nav.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  transition: position 1s ease-in-out;
}
nav.sticky .hamburger {
  margin: 0 20px;
}
nav .container {
  padding: 0 130px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  height: 120px;
}
nav .container .logo {
  margin-left: 0;
  justify-self: flex-start;
}
nav .container .logo img {
  width: 100%;
  height: 90px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}
nav .container ul.links li:last-child {
  margin-right: 0;
}
nav .container ul.links li a:not(.goFood) {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: var(--regular);
  font-weight: var(--semibold);
  transition: all 0.5s ease-in-out;
}
nav .container ul.links li a:not(.goFood).active, nav .container ul.links li a:not(.goFood):hover {
  color: var(--color);
}

.hero,
.foods,
.why,
.find-us,
.contact,
.seo,
footer {
  padding: 60px 0;
}
.hero .container,
.foods .container,
.why .container,
.find-us .container,
.contact .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero {
  background: url("assets/hero.webp") no-repeat right bottom, var(--color);
}
.hero .container {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.hero .container .left,
.hero .container .right {
  flex: 0 0 40%;
}
.hero .container .left {
  padding: 120px 0;
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container .left .greet {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
}
.hero .container .left .title {
  font-family: "Miltonian";
  font-style: normal;
  font-weight: 400;
  font-size: 66px;
  line-height: 79px;
  text-transform: capitalize;
  color: #000000;
}
.hero .container .left .description {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
  color: #000000;
  margin: 40px 0;
}
.hero .container .left .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.hero .container .left .social a.goFood {
  padding: 10px 20px;
  background-color: #000;
  color: var(--color);
  line-height: 24px;
  transition: all 0.5s ease-in-out;
}
.hero .container .left .social a.goFood:hover {
  transform: scale(1.1);
}
.hero .container .left .social .divider {
  flex: 0 1 10%;
}

.foods {
  background: url("assets/menu.webp") no-repeat;
  background-size: 100% 100%;
}
.foods .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.foods .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.foods .container .top h2 {
  flex: 1 1 70%;
  font-family: "Miltonian";
  font-style: normal;
  font-weight: 400;
  font-size: 66px;
  line-height: 79px;
  text-transform: capitalize;
  color: #ffffff;
}
.foods .container .top .divider {
  flex: 1 1 20%;
  border-bottom: 2px dashed #fff;
  margin: 0 10px;
}
.foods .container .top .menuList {
  display: flex;
  flex: 1 1 20%;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.foods .container .top .menuList button {
  padding: 5px 10px;
  border-radius: 50px;
  background-color: var(--color);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  opacity: 0.5;
}
.foods .container .top .menuList button.mactive {
  opacity: 1;
}
.foods .container .bottom {
  flex: 0 0 100%;
  margin-top: 40px;
}
.foods .container .bottom #makanan,
.foods .container .bottom #minuman {
  flex-direction: column;
}

.why {
  background-color: var(--color);
}
.why .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.why .container .left,
.why .container .right {
  flex: 0 0 50%;
}
.why .container .left {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.why .container .left .img-left {
  flex: 0 0 50%;
  display: inline-flex;
}
.why .container .left .img-left img {
  width: 100%;
  height: 100%;
}
.why .container .left .img-right {
  flex: 0 0 50%;
  display: inline-flex;
  flex-direction: column;
  row-gap: 10px;
}
.why .container .left .img-right img {
  width: 100%;
  height: 100%;
}
.why .container .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 30px;
}
.why .container .right h2 {
  font-family: "Miltonian";
  font-style: normal;
  font-weight: 400;
  font-size: 66px;
  line-height: 79px;
  text-transform: capitalize;
  color: #000000;
}
.why .container .right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 40px 0;
  color: #000000;
}
.why .container .right .icons {
  display: inline-flex;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.find-us {
  background: url("assets/find-us.webp") no-repeat;
  background-size: 100% 100%;
  padding: 130px 0;
}
.find-us .container .content {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 70%;
}
.find-us .container .content h2 {
  font-family: "Miltonian";
  font-style: normal;
  font-weight: 400;
  font-size: 66px;
  line-height: 79px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 40px;
}
.find-us .container .content .right {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.find-us .container .content .right div {
  flex: 0 0 45%;
  background-color: var(--color);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 10px;
  padding: 30px;
}
.find-us .container .content .right div img {
  width: 64px;
}

.contact {
  background-color: var(--color);
}
.contact .container {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.contact .container .right {
  color: #000;
  flex: 0 0 50%;
  display: flex;
}
.contact .container .left {
  flex: 0 0 50%;
}
.contact .container .left .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  row-gap: 20px;
}
.contact .container .left .contact-form input {
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid #000;
  color: #000;
  padding: 30px;
  outline: none;
}
.contact .container .left .contact-form input::-moz-placeholder {
  text-align: center;
  color: #000;
}
.contact .container .left .contact-form input::placeholder {
  text-align: center;
  color: #000;
}
.contact .container .left .contact-form button {
  color: #fff;
  border-radius: 10px;
  background-color: #000;
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  padding: 20px;
  outline: none;
  border: none;
  transition: all 0.5s ease-in-out;
}
.contact .container .left .contact-form button:hover {
  transform: scaleX(1.02);
}

.seo {
  background-color: #000;
}
.seo .container h2 {
  font-family: "Miltonian";
  font-style: normal;
  font-weight: 400;
  font-size: 66px;
  line-height: 70px;
  /* or 106% */
  font-feature-settings: "kern" off;
  color: #ffffff;
}
.seo .container p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #ffffff;
  margin: 20px 0;
}
.seo .container p a {
  color: var(--color);
  text-decoration: underline;
}

footer {
  background: var(--color);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .container .logo > a > img {
  width: 180px;
}
footer .container .details {
  max-width: calc(100% - 190px);
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000;
}
footer .container .details .footer-social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
footer .container .details .footer-social a {
  line-height: 14px;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(33.3333% - 24px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-width: 366px;
    max-height: 320px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 0px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color);
    border-radius: 10px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
  }
  .items .item .details .name:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: var(--color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 60px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
    padding: 20px 0;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .why,
  .find-us,
  .contact,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .why .container,
  .find-us .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    background: url("assets/hero.webp") no-repeat right bottom, var(--color);
    background-size: 40%;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 30%;
  }
  .hero .container .left {
    padding: 20px 0;
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .title {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 74px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .description {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
    margin: 40px 60px 40px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    background-color: #000;
    color: var(--color);
    line-height: 24px;
  }
  .hero .container .left .social .divider {
    flex: 0 1 20%;
  }
  .foods {
    background: url("assets/menu.webp") no-repeat;
    background-size: 100% 100%;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    flex: 1 1 80%;
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 68px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    display: none;
  }
  .foods .container .top .menuList {
    display: flex;
    flex: 0 0 20%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    padding: 5px 10px;
    border-radius: 50px;
    background-color: var(--color);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    opacity: 0.5;
  }
  .foods .container .top .menuList button.mactive {
    opacity: 1;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 40px;
  }
  .foods .container .bottom #makanan,
  .foods .container .bottom #minuman {
    flex-direction: column;
  }
  .why {
    background-color: var(--color);
  }
  .why .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .why .container .left,
  .why .container .right {
    flex: 0 0 50%;
  }
  .why .container .left {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  .why .container .left .img-left {
    flex: 0 0 50%;
    display: inline-flex;
  }
  .why .container .left .img-left img {
    width: 100%;
    height: 100%;
  }
  .why .container .left .img-right {
    flex: 0 0 50%;
    display: inline-flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .why .container .left .img-right img {
    width: 100%;
    height: 100%;
  }
  .why .container .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  .why .container .right h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 52px;
    line-height: 62px;
  }
  .why .container .right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 40px 0;
    color: #000000;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    width: 64px;
  }
  .find-us {
    background: url("assets/find-us.webp") no-repeat;
    background-size: 100% 100%;
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 70%;
  }
  .find-us .container .content h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 52px;
    line-height: 62px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    flex: 0 0 45%;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 10px;
    padding: 30px;
  }
  .find-us .container .content .right div img {
    width: 64px;
  }
  .contact {
    background-color: var(--color);
  }
  .contact .container {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 50%;
    display: flex;
  }
  .contact .container .left {
    flex: 0 0 50%;
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 30px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 66px;
    line-height: 70px;
    /* or 106% */
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color);
    text-decoration: underline;
  }
  footer {
    background: var(--color);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: calc(100% - 190px);
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(33.3333% - 24px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-width: 366px;
    max-height: 320px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 0px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color);
    border-radius: 10px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
  }
  .items .item .details .name:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: var(--color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 60px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .why,
  .find-us,
  .contact,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .why .container,
  .find-us .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    background: url("assets/hero.webp") no-repeat right bottom, var(--color);
    background-size: 40%;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 25%;
  }
  .hero .container .left {
    padding: 20px 0;
    flex: 0 0 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .title {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 52px;
    line-height: 64px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
    margin: 40px 100px 40px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    background-color: #000;
    color: var(--color);
    line-height: 24px;
  }
  .hero .container .left .social .divider {
    flex: 0 1 20%;
  }
  .foods {
    background: url("assets/menu.webp") no-repeat;
    background-size: 100% 100%;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    flex: 1 1 80%;
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 58px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    display: none;
  }
  .foods .container .top .menuList {
    display: flex;
    flex: 0 0 20%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    padding: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000;
    opacity: 0.5;
  }
  .foods .container .top .menuList button.mactive {
    opacity: 1;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 40px;
  }
  .foods .container .bottom #makanan,
  .foods .container .bottom #minuman {
    flex-direction: column;
  }
  .why {
    background-color: var(--color);
  }
  .why .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .why .container .left,
  .why .container .right {
    flex: 0 0 50%;
  }
  .why .container .left {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    max-height: 420px;
    overflow: hidden;
  }
  .why .container .left .img-left {
    max-height: 420px;
    overflow: hidden;
    border-radius: 10px;
    flex: 0 0 50%;
    display: inline-flex;
  }
  .why .container .left .img-left img {
    width: 94%;
    height: 410px;
    border-radius: 30px;
  }
  .why .container .left .img-right {
    max-height: 420px;
    overflow: hidden;
    border-radius: 10px;
    flex: 0 0 50%;
    display: inline-flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .why .container .left .img-right img {
    width: 96%;
    height: 190px;
    border-radius: 30px;
  }
  .why .container .right {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0px;
  }
  .why .container .right h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 58px;
  }
  .why .container .right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 40px 0;
    color: #000000;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    width: 64px;
  }
  .find-us {
    background: url("assets/find-us.webp") no-repeat;
    background-size: 100% 100%;
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 80%;
  }
  .find-us .container .content h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 58px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    flex: 0 0 45%;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
  }
  .find-us .container .content .right div img {
    width: 64px;
  }
  .contact {
    background-color: var(--color);
  }
  .contact .container {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 calc(60% - 5px);
    display: flex;
  }
  .contact .container .left {
    flex: 0 0 calc(40% - 5px);
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 30px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 52px;
    /* or 106% */
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color);
    text-decoration: underline;
  }
  footer {
    background: var(--color);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: calc(100% - 190px);
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(33.3333% - 24px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-width: 156px;
    max-height: 150px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 0px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: var(--color);
    border-radius: 10px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    z-index: 100;
    left: 0;
    width: 100%;
    top: 120px;
    background-color: #000;
    gap: 30px;
  }
  nav .container ul.links li {
    height: 44px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .why,
  .find-us,
  .contact,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .why .container,
  .find-us .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    background: url("assets/hero.webp") no-repeat right bottom, var(--color);
    background-size: 40%;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 25%;
  }
  .hero .container .left {
    padding: 20px 0;
    flex: 0 0 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .title {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    line-height: 52px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
    margin: 20px 80px 20px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    background-color: #000;
    color: var(--color);
    font-size: 16px;
    line-height: 24px;
  }
  .hero .container .left .social .divider {
    flex: 0 1 20%;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    flex: 1 1 80%;
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 38px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    display: none;
  }
  .foods .container .top .menuList {
    display: flex;
    flex: 0 0 5%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    padding: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000;
    opacity: 0.5;
  }
  .foods .container .top .menuList button.mactive {
    opacity: 1;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 40px;
  }
  .foods .container .bottom #makanan,
  .foods .container .bottom #minuman {
    flex-direction: column;
  }
  .why {
    background-color: var(--color);
  }
  .why .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .why .container .left,
  .why .container .right {
    flex: 0 0 50%;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0px;
  }
  .why .container .right h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
  }
  .why .container .right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 40px 0;
    color: #000000;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    width: 64px;
  }
  .find-us {
    background: url("assets/find-us.webp") no-repeat;
    background-size: 100% 100%;
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 100%;
  }
  .find-us .container .content h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    flex: 0 0 48%;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
  }
  .find-us .container .content .right div img {
    width: 64px;
  }
  .contact {
    background-color: var(--color);
  }
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 calc(60% - 5px);
    display: flex;
  }
  .contact .container .left {
    flex: 0 0 calc(40% - 5px);
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 30px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    /* or 106% */
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color);
    text-decoration: underline;
  }
  footer {
    background: var(--color);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    max-width: 100%;
    max-height: unset;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 0px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: var(--color);
    border-radius: 10px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    position: relative;
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    z-index: 100;
    left: 0;
    width: 100%;
    top: 120px;
    background-color: #000;
    gap: 30px;
  }
  nav .container ul.links li {
    height: 44px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .why,
  .find-us,
  .contact,
  .seo,
  footer {
    padding: 20px 0;
  }
  .hero .container,
  .foods .container,
  .why .container,
  .find-us .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 20px;
  }
  .hero {
    background: url("assets/hero.webp") no-repeat right bottom, var(--color);
    background-size: 40%;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 0%;
  }
  .hero .container .left {
    padding: 20px 0;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .title {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
    margin: 10px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    background-color: #000;
    color: var(--color);
    font-size: 16px;
    line-height: 24px;
  }
  .hero .container .left .social .divider {
    flex: 0 1 20%;
    display: none;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    flex: 1 1 100%;
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    display: none;
  }
  .foods .container .top .menuList {
    display: flex;
    flex: 0 0 5%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    padding: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000;
    opacity: 0.5;
  }
  .foods .container .top .menuList button.mactive {
    opacity: 1;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 40px;
  }
  .foods .container .bottom #makanan,
  .foods .container .bottom #minuman {
    flex-direction: column;
  }
  .why {
    background-color: var(--color);
  }
  .why .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .why .container .left,
  .why .container .right {
    flex: 0 0 100%;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0px;
  }
  .why .container .right h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
  }
  .why .container .right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 20px 0;
    color: #000000;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    width: 64px;
  }
  .find-us {
    background: url("assets/find-us.webp") no-repeat;
    background-size: 100% 100%;
    padding: 30px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 100%;
  }
  .find-us .container .content h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    flex: 0 0 100%;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
  }
  .find-us .container .content .right div img {
    width: 64px;
  }
  .contact {
    background-color: var(--color);
  }
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 calc(60% - 5px);
    display: flex;
  }
  .contact .container .left {
    flex: 0 0 calc(40% - 5px);
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 30px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .contact .container .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Miltonian";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    /* or 106% */
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color);
    text-decoration: underline;
  }
  footer {
    background: var(--color);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
}/*# sourceMappingURL=style.css.map */