@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --color: #fda441;
  --color2: #f9a742;
  --color3: #f7f7f7;
  --regular: 400;
  --semibold: 500;
  --bold: 600;
}

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

body {
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a.goFood,
button {
  transition: box-shadow 0.2s ease-in-out;
}
a.goFood:hover,
button:hover {
  box-shadow: 0px 4px 10px rgba(247, 159, 45, 0.9);
}

.social > a {
  background-color: transparent;
  overflow: hidden;
  background-color: transparent;
  transition: fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.social > a:hover {
  opacity: 0.7;
}

a.goFood {
  padding: 8px 20px 12px;
  background: var(--color);
  border-radius: 60px;
  color: #fff !important;
}

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

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

.active {
  display: flex !important;
}

.line {
  margin-bottom: 6px;
  width: 50px;
  height: 2px;
  background-color: #000000;
}

.view-all {
  text-align: center;
  margin: 3rem 0;
}
.view-all a {
  padding: 10px 20px;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--color2);
  text-decoration: none;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.view-all a:hover {
  box-shadow: 0px 14px 8px var(--color);
}

.items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.items .item {
  flex: 0 0 calc(25% - 15px);
  position: relative;
  overflow: hidden;
}
.items .item:hover .details, .items .item:focus .details {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.items .item:hover .details .content, .items .item:focus .details .content {
  transition: transform 0.4s ease-in-out;
  transform: translateY(-60px);
}
.items .item .image {
  width: 100%;
  height: 260px;
  max-height: 280px;
}
.items .item .image img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  border-radius: 6px;
}
.items .item .details {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 280px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.items .item .details .content {
  max-width: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 15px;
  position: absolute;
  top: 140px;
}
.items .item .details .price {
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  background-color: #fff;
  color: #000000;
  text-align: right;
  padding: 5px;
  border-radius: 6px;
}
.items .item .details .name {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  background: linear-gradient(360deg, #fdcf78 0%, #f9a640 100%), #ffce08;
  border-radius: 6px;
  padding: 5px;
}

.all-items {
  color: #000;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: unset;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 20px;
}
.all-items .item {
  margin: unset;
  display: flex;
  flex: 0 0 48%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.all-items .item .name,
.all-items .item .price {
  margin: unset;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 20px;
  width: 25%;
}
.all-items .item .name {
  width: 50%;
}
.all-items .item .line {
  width: 20%;
  overflow: hidden;
  height: 0;
  border: 1px dashed var(--color);
  border-radius: 4px;
}

.active {
  padding: 20px 0;
}

nav {
  background: var(--color3);
  box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.15);
  position: relative;
}
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: 100px;
}
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;
}
nav .container ul.links li {
  margin-right: 30px;
}
nav .container ul.links li:last-child {
  margin-right: 0;
}
nav .container ul.links li a {
  color: #000;
  font-size: 20px;
  line-height: 20px;
  font-weight: var(--regular);
  padding: 8px 20px 12px;
  transition: all 0.5s ease-in-out;
}
nav .container ul.links li a.active, nav .container ul.links li a:hover {
  color: var(--color);
}

.hero {
  background-image: url("assets/lighting-blurred-restaurant-interior-design.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 60px 0;
}
.hero .container {
  padding: 0px 60px;
  margin: 0 auto;
  color: #fff;
  display: flex;
}
.hero .container .content {
  padding: 60px 0;
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
}
.hero .container .content .greet {
  font-weight: var(--semibold);
  font-size: 73px;
  line-height: 110px;
  text-transform: uppercase;
  color: var(--color);
}
.hero .container .content .title {
  width: 56%;
  font-weight: 600;
  font-size: 120px;
  line-height: 110px;
  text-transform: uppercase;
  color: var(--color);
}
.hero .container .content .description {
  width: 56%;
  text-transform: capitalize;
  font-weight: var(--regular);
  font-size: 18px;
  color: #ffffff;
  margin: 20px 0 60px 0;
}
.hero .container .content a.goFood {
  max-width: 160px;
  font-weight: 400;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.our-menu {
  background: var(--color);
  padding: 60px 0;
}
.our-menu .container {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
}
.our-menu .container .top {
  display: flex;
  flex-direction: row;
  flex: 0 0 100%;
  justify-content: space-between;
  align-items: center;
}
.our-menu .container .top h2 {
  font-weight: 500;
  font-size: 66px;
  line-height: 98px;
  text-transform: uppercase;
  color: #000;
}
.our-menu .container .top .menuList button {
  padding: 5px 20px;
  border-radius: 10px;
  background-color: transparent;
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  border: 2px solid #fff;
  margin: 0 10px;
  color: #fff;
}
.our-menu .container .top .menuList button.mactive {
  background: #fff;
  color: #000;
}
.our-menu .container .bottom {
  flex: 0 0 100%;
}
.our-menu .container .bottom #makanan,
.our-menu .container .bottom #minuman {
  flex-direction: column;
  padding-top: 60px;
}

.why {
  background-image: url("assets/restaurants-terrace-with-black-green-awnings 1.webp");
  position: relative;
  padding: 95px 0;
}
.why:before {
  content: "";
  position: absolute;
  width: 710px;
  height: 484px;
  left: -190px;
  top: 95px;
  background: linear-gradient(270deg, #f9a640 0%, #fdcf78 100%);
  border-radius: 300px 0px 0px 300px;
  transform: rotate(-180deg);
  z-index: 1;
}
.why .container {
  padding: 0 60px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
.why .container .left {
  flex-basis: auto;
  z-index: 2;
}
.why .container .right {
  flex: 0 0 50%;
  display: inline-flex;
  flex-direction: column;
}
.why .container .right h2 {
  font-weight: 500;
  font-size: 66px;
  line-height: 64px;
  color: #fff;
}
.why .container .right h2 > span {
  color: var(--color2);
}
.why .container .right p {
  color: #fff;
  font-size: 18px;
  margin: 20px 0;
}
.why .container .right .icons {
  max-width: 60%;
  display: inline-flex;
  justify-content: space-between;
}

.we-are-open {
  background: linear-gradient(360deg, #fdcf78 0%, #f9a640 100%);
}
.we-are-open .container {
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.we-are-open .container h2 {
  width: 100%;
  text-align: center;
  padding: 6px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 66px;
  line-height: 98px;
  text-transform: uppercase;
  color: #000;
}
.we-are-open .container .image {
  flex: 0 0 30%;
  width: 40%;
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index: 3;
}
.we-are-open .container .content {
  z-index: 2;
  padding: 120px 0;
  margin-left: 30%;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
  flex: 0 0 70%;
}
.we-are-open .container .content .contact-form {
  flex: 0 0 50%;
  width: 40%;
  align-self: center;
}
.we-are-open .container .content .contact-form input {
  width: 100%;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: transparent;
  padding: 20px 0;
  color: #000;
  text-align: center;
  margin-bottom: 10px;
  transition: border 0.5s ease-in-out;
}
.we-are-open .container .content .contact-form input:hover, .we-are-open .container .content .contact-form input:focus {
  outline: none;
  border: 2px solid var(--color3);
}
.we-are-open .container .content .contact-form button {
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 500;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  width: 100%;
  background: #fff;
  color: #000;
}
.we-are-open .container .content .schedules {
  margin-bottom: 30px;
  display: flex;
  flex: 0 0 50%;
  flex-direction: row;
  color: #000000;
  justify-content: center;
  align-items: stretch;
}
.we-are-open .container .content .schedules .schedule,
.we-are-open .container .content .schedules .location {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 50px 10px;
  flex: 0 0 50%;
  background-color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: var(--regular);
}
.we-are-open .container .content .schedules .schedule img,
.we-are-open .container .content .schedules .location img {
  margin: unset;
  margin-bottom: 10px;
}
.we-are-open .container .content .schedules .schedule {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
}
.we-are-open .container .content .schedules .schedule:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 65%;
  background-color: #767676;
  right: 0;
}

footer {
  background-color: var(--color3);
  color: #000;
  padding: 60px 0;
}
footer .container {
  margin: 0 auto;
  padding: 0 60px;
  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: 244px;
}
footer .container .details {
  max-width: 40%;
}
footer .container .details .social {
  text-align: left;
}
footer .container .details .social a {
  display: inline-block;
  margin: 20px;
  margin-left: 0;
}
footer .container .map {
  flex-basis: 100%;
}

article {
  padding: 50px 16px;
}
article .heading {
  font-size: 40px;
  text-align: center;
  text-wrap: balance;
  line-height: 1;
}
article p {
  text-align: justify;
  font-size: 18px;
  margin-top: 10px;
}
article p a {
  color: var(--color);
  transition: all 0.5s ease-in-out;
}
article p a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .our-menu .container .top {
    flex-direction: column;
  }
  .why .left img {
    width: 100%;
  }
  .we-are-open .image {
    display: none;
  }
  .we-are-open .container .content {
    margin-left: 0;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 1024px) {
  a.goFood,
  button {
    transition: box-shadow 0.2s ease-in-out;
  }
  a.goFood:hover,
  button:hover {
    box-shadow: 0px 4px 10px rgba(247, 159, 45, 0.9);
  }
  .social > a {
    background-color: transparent;
    overflow: hidden;
    background-color: transparent;
    transition: fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .social > a:hover {
    opacity: 0.7;
  }
  a.goFood {
    padding: 8px 20px 12px;
    background: var(--color);
    border-radius: 60px;
    color: #fff !important;
  }
  .container {
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .active {
    display: flex !important;
  }
  .line {
    margin-bottom: 6px;
    width: 50px;
    height: 2px;
    background-color: #000000;
  }
  .view-all {
    text-align: center;
    margin: 3rem 0;
  }
  .view-all a {
    padding: 10px 20px;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--color2);
    text-decoration: none;
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .view-all a:hover {
    box-shadow: 0px 14px 8px var(--color);
  }
  .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .items .item {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    overflow: hidden;
  }
  .items .item:hover .details, .items .item:focus .details {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
  }
  .items .item:hover .details .content, .items .item:focus .details .content {
    transition: transform 0.4s ease-in-out;
    transform: translateY(-60px);
  }
  .items .item .image {
    width: 100%;
    height: 260px;
    max-height: 280px;
  }
  .items .item .image img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    border-radius: 6px;
  }
  .items .item .details {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 280px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }
  .items .item .details .content {
    max-width: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 15px;
    position: absolute;
    top: 140px;
  }
  .items .item .details .price {
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    background-color: #fff;
    color: #000000;
    text-align: right;
    padding: 5px;
    border-radius: 6px;
  }
  .items .item .details .name {
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    background: linear-gradient(360deg, #fdcf78 0%, #f9a640 100%), #ffce08;
    border-radius: 6px;
    padding: 5px;
  }
  .all-items {
    color: #000;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: unset;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-top: 20px;
  }
  .all-items .item {
    margin: unset;
    display: flex;
    flex: 0 0 48%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .all-items .item .name,
  .all-items .item .price {
    margin: unset;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 20px;
    width: 25%;
  }
  .all-items .item .name {
    width: 50%;
  }
  .all-items .item .line {
    width: 20%;
    overflow: hidden;
    height: 0;
    border: 1px dashed var(--color);
    border-radius: 4px;
  }
  nav {
    height: 100px;
    position: relative;
    z-index: 99;
  }
  nav .container {
    padding: 0 45px;
  }
  .hero {
    padding: 45px 0;
  }
  .hero .container {
    padding: 0px 45px;
  }
  .hero .container .content {
    padding: 45px 0;
  }
  .hero .container .content .title {
    width: 70%;
  }
  .hero .container .content .description {
    width: 70%;
    margin: 20px 0 40px 0;
  }
  .our-menu {
    padding: 45px 0;
  }
  .our-menu .container {
    padding: 0 45px;
  }
  .our-menu .container .top {
    display: flex;
    flex-direction: row;
    flex: 0 0 100%;
    justify-content: space-between;
    align-items: center;
  }
  .our-menu .container .top h2 {
    font-size: 52px;
    line-height: 58px;
  }
  .our-menu .container .top .menuList {
    display: flex;
  }
  .our-menu .container .top .menuList button {
    padding: 5px 10px;
    font-weight: 500;
    font-size: 24px;
  }
  .why {
    background-image: url("assets/restaurants-terrace-with-black-green-awnings 1.webp");
    position: relative;
    padding: 45px 0;
  }
  .why:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 300px;
    left: -100px;
    top: 120px;
    background: linear-gradient(270deg, #f9a640 0%, #fdcf78 100%);
    border-radius: 300px 0px 0px 300px;
    transform: rotate(-180deg);
    z-index: 1;
  }
  .why .container {
    padding: 0 45px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .why .container .left {
    flex-basis: auto;
    width: 50%;
    z-index: 2;
  }
  .why .container .left img {
    width: 100%;
  }
  .why .container .right {
    flex: 0 0 60%;
    display: inline-flex;
    flex-direction: column;
  }
  .why .container .right h2 {
    font-weight: 500;
    font-size: 60px;
    line-height: 64px;
  }
  .why .container .right .icons img {
    max-width: 72px;
  }
  .we-are-open .container {
    padding: 0 45px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .we-are-open .container h2 {
    width: 100%;
    text-align: center;
    padding: 6px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 66px;
    line-height: 98px;
    text-transform: uppercase;
    color: #000;
  }
  .we-are-open .container .image {
    flex: 0 0 20%;
    width: 20%;
    position: absolute;
    bottom: -7px;
    left: 0;
    z-index: 3;
  }
  .we-are-open .container .image img {
    max-width: 400px;
  }
  .we-are-open .container .content {
    z-index: 2;
    padding: 45px 0;
    margin-left: 20%;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 20px;
    flex: 0 0 80%;
  }
  .contact-us {
    padding: 45px 0;
  }
  .contact-us .container {
    padding: 0 45px;
  }
  footer {
    background-color: var(--color3);
    color: #000;
    padding: 45px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 45px;
    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 .map {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 991px) {
  a.goFood,
  button {
    transition: box-shadow 0.2s ease-in-out;
  }
  a.goFood:hover,
  button:hover {
    box-shadow: 0px 4px 10px rgba(247, 159, 45, 0.9);
  }
  .social > a {
    background-color: transparent;
    overflow: hidden;
    background-color: transparent;
    transition: fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .social > a:hover {
    opacity: 0.7;
  }
  a.goFood {
    padding: 8px 20px 12px;
    background: var(--color);
    border-radius: 60px;
    color: #fff !important;
  }
  .container {
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .active {
    display: flex !important;
  }
  .line {
    margin-bottom: 6px;
    width: 50px;
    height: 2px;
    background-color: #000000;
  }
  .view-all {
    text-align: center;
    margin: 3rem 0;
  }
  .view-all a {
    padding: 10px 20px;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--color2);
    text-decoration: none;
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .view-all a:hover {
    box-shadow: 0px 14px 8px var(--color);
  }
  .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .items .item {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    overflow: hidden;
  }
  .all-items {
    color: #000;
    display: flex;
    width: 100%;
    align-items: space-between;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: unset;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-top: 20px;
  }
  .all-items .item {
    margin: unset;
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .all-items .item .name,
  .all-items .item .price {
    margin: unset;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
    width: 25%;
  }
  .all-items .item .name {
    width: 50%;
  }
  .all-items .item .price {
    text-align: right;
  }
  .all-items .item .line {
    width: 25%;
    overflow: hidden;
    height: 0;
    border: 1px dashed var(--color);
    border-radius: 4px;
  }
  nav {
    height: 100px;
    position: relative;
  }
  nav.sticky .hamburger {
    margin: 0px;
  }
  nav .container {
    padding: 0 45px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 100px;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  nav .container ul.links li {
    height: 40px;
    margin-right: 0;
    color: #000000;
    text-decoration: none;
  }
  nav .container ul.links li a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 8px 15px;
    font-size: 16px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  .hero {
    padding: 45px 0;
  }
  .hero .container {
    padding: 0px 45px;
  }
  .hero .container .content {
    background-color: rgba(0, 0, 0, 0.5019607843);
    border-radius: 10px;
    padding: 22px;
  }
  .hero .container .content .title {
    width: 100%;
  }
  .hero .container .content .description {
    width: 100%;
    margin: 20px 0;
  }
  .our-menu {
    padding: 45px 0;
  }
  .our-menu .container {
    padding: 0 45px;
  }
  .our-menu .container .top {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    row-gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
  .our-menu .container .top h2 {
    font-size: 52px;
    line-height: 58px;
  }
  .our-menu .container .top .menuList {
    display: flex;
  }
  .our-menu .container .top .menuList button {
    padding: 5px 10px;
    font-weight: 500;
    font-size: 24px;
  }
  .why {
    padding: 45px 0;
  }
  .why:before {
    content: unset;
    position: absolute;
    width: 400px;
    height: 300px;
    left: -100px;
    top: 120px;
    background: linear-gradient(270deg, #f9a640 0%, #fdcf78 100%);
    border-radius: 300px 0px 0px 300px;
    transform: rotate(-180deg);
    z-index: 1;
  }
  .why .container {
    padding: 0 45px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    flex: 0 0 100%;
    display: inline-flex;
    flex-direction: column;
  }
  .why .container .right h2 {
    font-weight: 500;
    font-size: 52px;
    line-height: 58px;
  }
  .why .container .right p {
    font-weight: 300;
  }
  .why .container .right .icons {
    max-width: 100%;
    text-align: center;
  }
  .why .container .right .icons img {
    max-width: unset;
  }
  .we-are-open {
    padding: 45px 0;
  }
  .we-are-open .container {
    padding: 0 45px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .we-are-open .container h2 {
    width: 100%;
    text-align: center;
    padding: 6px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 66px;
    line-height: 98px;
    text-transform: uppercase;
    color: #000;
  }
  .we-are-open .container .image {
    display: none;
  }
  .we-are-open .container .content {
    z-index: 2;
    padding: 15px 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 20px;
    flex: 0 0 100%;
  }
  .we-are-open .container .content .contact-form {
    width: 80%;
  }
  .we-are-open .container .content .schedules .schedule,
  .we-are-open .container .content .schedules .location {
    padding: 10px;
  }
  .we-are-open .container .content .schedules .schedule:before {
    height: 90%;
  }
  footer {
    background-color: var(--color3);
    color: #000;
    padding: 45px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 45px;
    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%;
    order: 3;
  }
  footer .container .map {
    order: 2;
    margin: 20px 0;
    width: 100%;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .items .item {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    overflow: hidden;
  }
  .all-items {
    color: #000;
    display: flex;
    width: 100%;
    align-items: space-between;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: unset;
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin-top: 20px;
  }
  .all-items .item {
    margin: unset;
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .all-items .item .name,
  .all-items .item .price {
    margin: unset;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
    width: 25%;
  }
  .all-items .item .name {
    width: 50%;
  }
  .all-items .item .price {
    text-align: right;
  }
  .all-items .item .line {
    width: 25%;
    overflow: hidden;
    height: 0;
    border: 1px dashed var(--color);
    border-radius: 4px;
  }
  nav {
    height: 100px;
    position: relative;
  }
  nav.sticky .hamburger {
    margin: 0px;
  }
  nav .container {
    padding: 0 45px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 100px;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  nav .container ul.links li {
    height: 40px;
    margin-right: 0;
    color: #000000;
    text-decoration: none;
  }
  nav .container ul.links li a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 8px 15px;
    font-size: 16px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  .hero {
    padding: 15px 0;
  }
  .hero .container {
    padding: 0px 15px;
  }
  .hero .container .content {
    background-color: rgba(0, 0, 0, 0.5019607843);
    border-radius: 10px;
    padding: 15px;
  }
  .hero .container .content #timeStamps {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .hero .container .content .greet {
    font-size: 43px;
    line-height: 43px;
  }
  .hero .container .content .title {
    width: 100%;
  }
  .hero .container .content .description {
    width: 100%;
    margin: 20px 0;
  }
  .our-menu {
    padding: 15px 0;
  }
  .our-menu .container {
    padding: 0 15px;
  }
  .our-menu .container .top {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    row-gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
  .our-menu .container .top h2 {
    font-size: 42px;
    line-height: 58px;
    text-align: center;
  }
  .our-menu .container .top .menuList {
    display: flex;
  }
  .our-menu .container .top .menuList button {
    padding: 5px 10px;
    font-weight: 400;
    font-size: 20px;
  }
  .our-menu .container .bottom #makanan,
  .our-menu .container .bottom #minuman {
    padding-top: 30px;
  }
  .why {
    padding: 15px 0;
  }
  .why:before {
    content: unset;
  }
  .why .container {
    padding: 0 15px;
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: center;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    flex: 0 0 100%;
    display: inline-flex;
    flex-direction: column;
  }
  .why .container .right h2 {
    font-weight: 500;
    font-size: 52px;
    line-height: 58px;
  }
  .why .container .right p {
    font-weight: 300;
  }
  .why .container .right .icons {
    max-width: 100%;
    text-align: center;
  }
  .why .container .right .icons img {
    max-width: unset;
  }
  .we-are-open {
    padding: 15px 0;
  }
  .we-are-open .container {
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .we-are-open .container h2 {
    width: 100%;
    text-align: center;
    padding: 6px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 46px;
    line-height: 58px;
    text-transform: uppercase;
    color: #000;
  }
  .we-are-open .container .image {
    display: none;
  }
  .we-are-open .container .content {
    z-index: 2;
    padding: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 20px;
    flex: 0 0 100%;
  }
  .we-are-open .container .content .contact-form {
    width: 80%;
  }
  .we-are-open .container .content .schedules {
    flex-direction: column;
  }
  .we-are-open .container .content .schedules .schedule,
  .we-are-open .container .content .schedules .location {
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 20px;
    font-size: 18px;
    border-radius: 10px;
  }
  .we-are-open .container .content .schedules .location {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .we-are-open .container .content .schedules .schedule {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .we-are-open .container .content .schedules .schedule:before {
    width: 90%;
    height: 2px;
    bottom: 0;
    left: 5%;
  }
  footer {
    background-color: var(--color3);
    color: #000;
    padding: 15px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 15px;
    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%;
    order: 3;
  }
  footer .container .map {
    order: 2;
    margin: 20px 0;
    width: 100%;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .hero .content {
    text-align: center;
  }
  .hero #timeStamps img {
    display: none;
  }
  .hero .container .content a.goFood {
    margin: 0 auto;
  }
  .items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .items .item {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
  }
  .all-items {
    color: #000;
    display: flex;
    width: 100%;
    align-items: space-between;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: unset;
    row-gap: 10px;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-top: 20px;
  }
  .all-items .item {
    margin: unset;
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
  }
  .all-items .item .name,
  .all-items .item .price {
    margin: unset;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    width: 35%;
  }
  .all-items .item .name {
    width: 50%;
  }
  .all-items .item .price {
    text-align: right;
  }
  .all-items .item .line {
    width: 15%;
  }
  nav {
    height: 100px;
    position: relative;
  }
  nav.sticky .hamburger {
    margin: 0px;
  }
  nav .container {
    padding: 0 15px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 100px;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  nav .container ul.links li {
    height: 40px;
    margin-right: 0;
    color: #000000;
    text-decoration: none;
  }
  nav .container ul.links li a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 8px 15px;
    font-size: 16px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  .hero {
    padding: 15px 0;
  }
  .hero .container {
    padding: 0px 15px;
  }
  .hero .container .content {
    background-color: rgba(0, 0, 0, 0.5647058824);
    border-radius: 10px;
    padding: 15px;
  }
  .hero .container .content #timeStamps {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .hero .container .content .greet {
    font-size: 32px;
    line-height: 32px;
  }
  .hero .container .content .title {
    width: 100%;
    font-size: 54px;
    line-height: 54px;
  }
  .hero .container .content .description {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    margin: 20px 0;
  }
  .our-menu {
    padding: 15px 0;
  }
  .our-menu .container {
    padding: 0 15px;
  }
  .our-menu .container .top {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    row-gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
  .our-menu .container .top h2 {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
  }
  .our-menu .container .top .menuList {
    display: flex;
  }
  .our-menu .container .top .menuList button {
    padding: 5px 10px;
    font-weight: 300;
    font-size: 20px;
  }
  .our-menu .container .bottom #makanan,
  .our-menu .container .bottom #minuman {
    padding-top: 30px;
  }
  .why {
    padding: 15px 0;
  }
  .why:before {
    content: unset;
  }
  .why .container {
    padding: 0 15px;
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: center;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    flex: 0 0 100%;
    display: inline-flex;
    flex-direction: column;
  }
  .why .container .right h2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 42px;
  }
  .why .container .right p {
    font-weight: 300;
  }
  .why .container .right .icons {
    max-width: 100%;
    text-align: center;
  }
  .why .container .right .icons img {
    max-width: 64px;
  }
  .we-are-open {
    padding: 15px 0;
  }
  .we-are-open .container {
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .we-are-open .container h2 {
    width: 100%;
    text-align: center;
    padding: 6px 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 36px;
    line-height: 38px;
  }
  .we-are-open .container .image {
    display: none;
  }
  .we-are-open .container .content {
    z-index: 2;
    padding: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 20px;
    flex: 0 0 100%;
  }
  .we-are-open .container .content .contact-form {
    width: 100%;
  }
  .we-are-open .container .content .schedules {
    flex-direction: column;
  }
  .we-are-open .container .content .schedules .schedule,
  .we-are-open .container .content .schedules .location {
    flex-direction: column;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
  }
  .we-are-open .container .content .schedules .location {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .we-are-open .container .content .schedules .schedule {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .we-are-open .container .content .schedules .schedule:before {
    width: 90%;
    height: 2px;
    bottom: 0;
    left: 5%;
  }
  footer {
    background-color: var(--color3);
    color: #000;
    padding: 15px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 15px;
    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%;
    order: 3;
  }
  footer .container .map {
    order: 2;
    margin: 20px 0;
    width: 100%;
    flex-basis: 100%;
  }
}/*# sourceMappingURL=style.css.map */