@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poetsen+One&display=swap");
:root {
  --color: #fbf1e5;
  --color2: #fdbe00;
  --color3: #eaeaea;
  --color4: #8c0004;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Poetsen One", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  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 {
  background: var(--color4);
  border-radius: 50px;
  color: var(--color2);
}

.active {
  display: flex !important;
}

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

svg {
  transition: all 0.5s ease-in-out;
}
svg:hover {
  transform: rotate(360deg);
}

.pos-r {
  position: relative;
}

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

.items {
  width: 100%;
}
.items .item {
  margin: 0 10px;
}
.items .item img {
  border-radius: 20px;
  width: 100%;
  height: 260px;
  -o-object-fit: fill;
     object-fit: fill;
}
.items .item .details {
  padding: 0px 10px;
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 260px;
}
.items .item .details .name,
.items .item .details .price {
  border-radius: 10px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  padding: 4px;
}
.items .item .details .name {
  background: var(--color4);
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 10px;
}
.items .item .details .price {
  font-size: 16px;
  line-height: 22px;
  color: var(--color4);
  background-color: var(--color2);
  max-width: -moz-max-content;
  max-width: max-content;
}

nav {
  background: var(--color);
}
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: 91px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
nav .container ul.links li a {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--regular);
  padding: 8px 16px;
  transition: all 0.5s ease-in-out;
}
nav .container ul.links li a:not(.goFood) {
  color: #000;
}
nav .container ul.links li a:not(.goFood).active, nav .container ul.links li a:not(.goFood):hover {
  color: var(--color4);
}

.hero,
.foods,
.drinks,
.we-are-open,
.contact-us,
.seo,
footer {
  padding: 100px 0;
}
.hero .container,
.foods .container,
.drinks .container,
.we-are-open .container,
.contact-us .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero {
  background-color: var(--color4);
  padding-bottom: 0;
}
.hero .container {
  text-align: center;
}
.hero .container .title {
  font-size: 80px;
  line-height: 86px;
  text-transform: capitalize;
  color: #fff;
  padding: 0 190px;
}
.hero .container .description {
  padding: 0 190px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
  margin: 40px 0;
  padding-bottom: 40px;
}
.hero .container .goFood {
  background-color: var(--color2);
  color: var(--color4);
  padding: 16px 30px;
  text-align: center;
}
.hero .container .social {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
}
.hero .extra {
  background-image: url("assets/extra.webp");
  background-size: 100% 970px;
  background-repeat: no-repeat;
  background-position: 0 0;
  height: 430px;
}
.hero .extra .image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.hero .extra .image img {
  width: 100%;
}

.foods,
.drinks {
  background-color: var(--color3);
}
.foods .container .top,
.drinks .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.foods .container .top h2,
.drinks .container .top h2 {
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.foods .container .top .divider,
.drinks .container .top .divider {
  margin-top: 40px;
  flex: 1 0 auto;
  border: 1px dashed #000;
}
.foods .container .top .link,
.drinks .container .top .link {
  background-color: var(--color4);
  padding: 12px 18px;
  border-radius: 40px;
  border: none;
  outline: none;
}
.foods .container .bottom,
.drinks .container .bottom {
  margin-top: 40px;
}

.drinks {
  background-color: var(--color4);
}
.drinks .container .top h2 {
  color: #fff;
}
.drinks .container .top .divider {
  border: 1px dashed #fff;
}
.drinks .container .top .link {
  background-color: var(--color2);
  padding: 12px 18px;
  border-radius: 40px;
  border: none;
  outline: none;
}

.we-are-open {
  background-image: url("assets/we-are-open.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.we-are-open .container {
  padding: 0 230px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.we-are-open .container .content {
  flex: 0 0 50%;
}
.we-are-open .container .content h2 {
  font-size: 60px;
  line-height: 72px;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  padding-bottom: 12px;
}
.we-are-open .container .content h2:before {
  content: "";
  position: absolute;
  width: 40%;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--color2);
}
.we-are-open .container .content .schedule {
  margin-top: 80px;
  padding: 16px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: var(--color4);
  color: #fff;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  position: relative;
}
.we-are-open .container .content .schedule:before, .we-are-open .container .content .schedule:after {
  z-index: 0;
  border-radius: 10px 10px 0 0;
  content: "";
  position: absolute;
  height: 35%;
  width: 60%;
  background-color: var(--color2);
  left: 20%;
  top: -35%;
}
.we-are-open .container .content .schedule:after {
  border-radius: 0 0 10px 10px;
  top: unset;
  bottom: -35%;
}

.contact-us {
  background-color: #fff;
}
.contact-us .container {
  padding: 0 230px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-us .container .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  flex-basis: calc(50% - 15px);
  flex-grow: 0;
}
.contact-us .container .contact-form input {
  font-family: "Manrope";
  border-radius: 10px;
  width: 100%;
  background-color: var(--color3);
  color: #a0a0a0;
  height: 66px;
  border: none;
  outline: none;
  padding: 0 30px;
}
.contact-us .container .contact-form input::-moz-placeholder {
  text-align: left;
  color: #a0a0a0;
}
.contact-us .container .contact-form input::placeholder {
  text-align: left;
  color: #a0a0a0;
}
.contact-us .container .contact-form button {
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Manrope";
  padding: 0 30px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--color4);
  color: var(--color2);
  height: 66px;
  text-align: left;
  outline: none;
  border: none;
}
.contact-us .container .location {
  font-family: "Manrope";
  background-color: var(--color4);
  color: #fff;
  display: flex;
  flex-basis: calc(50% - 15px);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  height: 320px;
}
.contact-us .container .location img {
  width: 96px;
}

.seo {
  background-color: var(--color4);
}
.seo .container {
  color: #fff;
}
.seo .container .map {
  padding: 0 100px;
  margin-bottom: 40px;
}
.seo .container h2 {
  font-size: 60px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  margin-bottom: 20px;
}
.seo .container p {
  font-family: "Manrope";
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
}
.seo .container p a {
  font-family: "Manrope";
  text-decoration: underline;
}

footer {
  background-color: 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: 200px;
}
footer .container .details {
  font-family: "Manrope";
  max-width: calc(100% - 200px);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
}
footer .container .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
footer .container .footer-social a {
  line-height: 14px;
}

.copyright {
  text-align: center;
  background-color: var(--color4);
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  padding: 6px 0;
}

.gofood:hover {
  transform: scale(1.1) !important;
}

button {
  cursor: pointer;
}

.seo a {
  transition: all 0.5s ease-in-out;
  color: var(--color);
}
.seo a:hover {
  text-decoration: none !important;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item img {
    border-radius: 20px;
    height: 260px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item .details {
    padding: 0px 10px;
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 260px;
  }
  .items .item .details .name,
  .items .item .details .price {
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    padding: 4px;
  }
  .items .item .details .name {
    background: var(--color4);
    font-size: 20px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .items .item .details .price {
    font-size: 16px;
    line-height: 22px;
    color: var(--color4);
    background-color: var(--color2);
    max-width: -moz-max-content;
    max-width: max-content;
  }
  nav {
    background: var(--color);
  }
  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: 76px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
    padding: 8px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active, nav .container ul.links li a:not(.goFood):hover {
    color: var(--color4) !important;
  }
  .hero,
  .foods,
  .drinks,
  .we-are-open,
  .contact-us,
  .seo,
  footer {
    padding: 80px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .we-are-open .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    padding-bottom: 0;
  }
  .hero .container {
    text-align: center;
  }
  .hero .container .title {
    font-size: 60px;
    line-height: 66px;
    padding: 0 160px;
  }
  .hero .container .description {
    padding: 0 160px;
    padding-bottom: 20px;
  }
  .hero .container .goFood {
    background-color: var(--color2);
    color: var(--color4);
    padding: 16px 30px;
    text-align: center;
  }
  .hero .container .social {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
  }
  .hero .extra {
    background-image: url("assets/extra.webp");
    background-size: 100% 970px;
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 400px;
  }
  .hero .extra .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .hero .extra .image img {
    width: 100%;
  }
  .foods,
  .drinks {
    background-color: var(--color3);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-size: 52px;
    line-height: 60px;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
  }
  .foods .container .top .divider,
  .drinks .container .top .divider {
    margin-top: 40px;
    flex: 1 0 auto;
    border: 1px dashed #000;
  }
  .foods .container .top .link,
  .drinks .container .top .link {
    background-color: var(--color4);
    padding: 8px 12px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .drinks {
    background-color: var(--color4);
  }
  .drinks .container .top h2 {
    color: #fff;
  }
  .drinks .container .top .divider {
    border: 1px dashed #fff;
  }
  .drinks .container .top .link {
    background-color: var(--color2);
    border: none;
    outline: none;
  }
  .we-are-open {
    background-image: url("assets/we-are-open.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .we-are-open .container {
    padding: 0 130px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .we-are-open .container .content {
    flex: 0 0 50%;
  }
  .we-are-open .container .content h2 {
    font-size: 52px;
    line-height: 60px;
  }
  .we-are-open .container .content h2:before {
    content: "";
    position: absolute;
    width: 40%;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--color2);
  }
  .we-are-open .container .content .schedule {
    margin-top: 80px;
    padding: 16px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    background-color: var(--color4);
    color: #fff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    position: relative;
  }
  .we-are-open .container .content .schedule:before, .we-are-open .container .content .schedule:after {
    z-index: 0;
    border-radius: 10px 10px 0 0;
    content: "";
    position: absolute;
    height: 30%;
    width: 60%;
    background-color: var(--color2);
    left: 20%;
    top: -30%;
  }
  .we-are-open .container .content .schedule:after {
    border-radius: 0 0 10px 10px;
    top: unset;
    bottom: -30%;
  }
  .contact-us {
    background-color: #fff;
  }
  .contact-us .container {
    padding: 0 130px;
  }
  .seo {
    background-color: var(--color4);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .map {
    padding: 0 70px;
    margin-bottom: 40px;
  }
  .seo .container h2 {
    font-size: 52px;
    line-height: 60px;
    font-feature-settings: "kern" off;
  }
  .seo .container p {
    font-family: "Manrope";
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: 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: 200px;
  }
  footer .container .details {
    max-width: calc(100% - 200px);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color4);
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item img {
    border-radius: 20px;
    height: 260px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item .details {
    padding: 0px 10px;
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 260px;
  }
  .items .item .details .name,
  .items .item .details .price {
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    padding: 4px;
  }
  .items .item .details .name {
    background: var(--color4);
    font-size: 20px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .items .item .details .price {
    font-size: 16px;
    line-height: 22px;
    color: var(--color4);
    background-color: var(--color2);
    max-width: -moz-max-content;
    max-width: max-content;
  }
  nav {
    background: var(--color);
  }
  nav .container {
    padding: 0 30px;
  }
  .hero,
  .foods,
  .drinks,
  .we-are-open,
  .contact-us,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .we-are-open .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    background-color: var(--color4);
    padding-bottom: 0;
  }
  .hero .container {
    text-align: center;
  }
  .hero .container .title {
    font-size: 52px;
    line-height: 58px;
    text-transform: capitalize;
    color: #fff;
    padding: 0;
    max-width: 476px;
    margin: 0 auto;
  }
  .hero .container .description {
    max-width: 476px;
    padding: 0;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #ffffff;
    margin: 40px auto;
    padding-bottom: 40px;
  }
  .hero .container .goFood {
    background-color: var(--color2);
    color: var(--color4);
    padding: 16px 30px;
    text-align: center;
  }
  .hero .container .social {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
  .hero .container .social svg {
    width: 36px;
  }
  .hero .extra {
    background-image: url("assets/extra.webp");
    background-size: 100% 970px;
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 430px;
  }
  .hero .extra .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .hero .extra .image img {
    width: 100%;
  }
  .foods,
  .drinks {
    background-color: var(--color3);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
  }
  .foods .container .top .divider,
  .drinks .container .top .divider {
    margin-top: 40px;
    flex: 1 0 auto;
    border: 1px dashed #000;
  }
  .foods .container .top .link,
  .drinks .container .top .link {
    background-color: var(--color4);
    padding: 8px 18px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .drinks {
    background-color: var(--color4);
  }
  .drinks .container .top h2 {
    color: #fff;
  }
  .drinks .container .top .divider {
    border: 1px dashed #fff;
  }
  .drinks .container .top .link {
    background-color: var(--color2);
  }
  .we-are-open .container {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .we-are-open .container .content {
    flex: 0 0 50%;
  }
  .we-are-open .container .content h2 {
    font-size: 48px;
    line-height: 54px;
  }
  .we-are-open .container .content h2:before {
    content: "";
    position: absolute;
    width: 40%;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--color2);
  }
  .we-are-open .container .content .schedule {
    margin-top: 80px;
    padding: 16px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    background-color: var(--color4);
    color: #fff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    position: relative;
  }
  .we-are-open .container .content .schedule:before, .we-are-open .container .content .schedule:after {
    z-index: 0;
    border-radius: 10px 10px 0 0;
    content: "";
    position: absolute;
    height: 25%;
    width: 60%;
    background-color: var(--color2);
    left: 20%;
    top: -25%;
  }
  .we-are-open .container .content .schedule:after {
    border-radius: 0 0 10px 10px;
    top: unset;
    bottom: -25%;
  }
  .contact-us {
    background-color: #fff;
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(50% - 15px);
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    font-family: "Manrope";
    border-radius: 10px;
    width: 100%;
    background-color: var(--color3);
    color: #a0a0a0;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Manrope";
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color4);
    color: var(--color2);
    height: 50px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .location {
    font-family: "Manrope";
    background-color: var(--color4);
    color: #fff;
    display: flex;
    flex-basis: calc(50% - 15px);
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    height: 260px;
  }
  .contact-us .container .location img {
    width: 96px;
  }
  .seo {
    background-color: var(--color4);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .map {
    padding: 0 0px;
    margin-bottom: 40px;
  }
  .seo .container h2 {
    font-size: 48px;
    line-height: 58px;
    font-feature-settings: "kern" off;
  }
  .seo .container p {
    font-family: "Manrope";
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: 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: 160px;
  }
  footer .container .details {
    max-width: calc(100% - 160px);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color4);
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item img {
    border-radius: 20px;
    height: 260px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item .details {
    padding: 0px 10px;
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 260px;
  }
  .items .item .details .name,
  .items .item .details .price {
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    padding: 4px;
  }
  .items .item .details .name {
    background: var(--color4);
    font-size: 20px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .items .item .details .price {
    font-size: 16px;
    line-height: 22px;
    color: var(--color4);
    background-color: var(--color2);
    max-width: -moz-max-content;
    max-width: max-content;
  }
  nav {
    background: var(--color);
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 80px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 66px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    width: 100%;
    left: 0;
    top: 81px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    z-index: 99;
    background-color: var(--color);
    padding: 30px 0;
  }
  nav .container ul.links li {
    height: 44px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
    padding: 8px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color4);
  }
  .hero,
  .foods,
  .drinks,
  .we-are-open,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .we-are-open .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    background-color: var(--color4);
    padding-bottom: 0;
  }
  .hero .container {
    text-align: center;
  }
  .hero .container .title {
    font-size: 48px;
    line-height: 52px;
    text-transform: capitalize;
    color: #fff;
    padding: 0;
  }
  .hero .container .description {
    padding: 0;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #ffffff;
    margin: 40px 0;
    padding-bottom: 40px;
  }
  .hero .container .goFood {
    background-color: var(--color2);
    color: var(--color4);
    padding: 16px 30px;
    text-align: center;
  }
  .hero .container .social {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
  }
  .hero .extra {
    background-image: url("assets/extra.webp");
    background-size: 100% 270px;
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 230px;
  }
  .hero .extra .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .hero .extra .image img {
    width: 100%;
  }
  .foods,
  .drinks {
    background-color: var(--color3);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
  }
  .foods .container .top .divider,
  .drinks .container .top .divider {
    margin-top: 24px;
    flex: 1 0 auto;
    border: 1px dashed #000;
  }
  .foods .container .top .link,
  .drinks .container .top .link {
    background-color: var(--color4);
    padding: 6px 12px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 30px;
  }
  .drinks {
    background-color: var(--color4);
  }
  .drinks .container .top h2 {
    color: #fff;
  }
  .drinks .container .top .divider {
    border: 1px dashed #fff;
  }
  .drinks .container .top .link {
    background-color: var(--color2);
    padding: 12px 18px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .we-are-open {
    background-image: url("assets/we-are-open.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .we-are-open .container {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .we-are-open .container .content {
    flex: 0 0 80%;
  }
  .we-are-open .container .content h2 {
    font-size: 40px;
    line-height: 44px;
    text-transform: capitalize;
    color: #ffffff;
    text-align: center;
    padding-bottom: 6px;
  }
  .we-are-open .container .content .schedule {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 4px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    background-color: var(--color4);
    color: #fff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    position: relative;
  }
  .we-are-open .container .content .schedule:before, .we-are-open .container .content .schedule:after {
    z-index: 0;
    border-radius: 10px 10px 0 0;
    content: "";
    position: absolute;
    height: 15%;
    width: 60%;
    background-color: var(--color2);
    left: 20%;
    top: -15%;
  }
  .we-are-open .container .content .schedule:after {
    border-radius: 0 0 10px 10px;
    top: unset;
    bottom: -15%;
  }
  .contact-us {
    background-color: #fff;
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(50% - 5px);
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    font-family: "Manrope";
    border-radius: 10px;
    width: 100%;
    background-color: var(--color3);
    color: #a0a0a0;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Manrope";
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color4);
    color: var(--color2);
    height: 50px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .location {
    flex-grow: 1;
    font-family: "Manrope";
    background-color: var(--color4);
    color: #fff;
    display: flex;
    flex-basis: calc(50% - 15px);
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    height: 260px;
  }
  .contact-us .container .location img {
    width: 96px;
  }
  .seo {
    background-color: var(--color4);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .map {
    padding: 0 0px;
    margin-bottom: 40px;
  }
  .seo .container h2 {
    font-size: 32px;
    line-height: 42px;
    font-feature-settings: "kern" off;
  }
  .seo .container p {
    font-family: "Manrope";
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: var(--color);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 118px;
  }
  footer .container .details {
    order: 2;
    margin-top: 40px;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color4);
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item img {
    border-radius: 20px;
    height: 220px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item .details {
    padding: 0px 10px;
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 220px;
  }
  .items .item .details .name,
  .items .item .details .price {
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    padding: 4px;
  }
  .items .item .details .name {
    background: var(--color4);
    font-size: 20px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .items .item .details .price {
    font-size: 16px;
    line-height: 22px;
    color: var(--color4);
    background-color: var(--color2);
    max-width: -moz-max-content;
    max-width: max-content;
  }
  nav {
    background: var(--color);
  }
  nav .container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 80px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 66px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    width: 100%;
    left: 0;
    top: 81px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    z-index: 99;
    background-color: var(--color);
    padding: 30px 0;
  }
  nav .container ul.links li {
    height: 44px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
    padding: 8px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color4);
  }
  .hero,
  .foods,
  .drinks,
  .we-are-open,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .we-are-open .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 20px;
  }
  .hero {
    background-color: var(--color4);
    padding-bottom: 0;
  }
  .hero .container {
    text-align: center;
  }
  .hero .container .title {
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
    color: #fff;
    padding: 0;
  }
  .hero .container .description {
    padding: 0;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #ffffff;
    margin: 20px 0;
    padding-bottom: 60px;
  }
  .hero .container .goFood {
    background-color: var(--color2);
    color: var(--color4);
    padding: 10px 30px;
    text-align: center;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
    position: absolute;
    top: unset;
    bottom: 40px;
    transform: translate(-50%, 0);
    right: unset;
    left: 50%;
  }
  .hero .extra {
    background-image: url("assets/extra.webp");
    background-size: 100% 270px;
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 230px;
  }
  .hero .extra .image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
  }
  .hero .extra .image img {
    width: 100%;
  }
  .foods,
  .drinks {
    background-color: var(--color3);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
  }
  .foods .container .top .divider,
  .drinks .container .top .divider {
    margin-top: 20px;
    flex: 1 0 auto;
    border: 1px dashed #000;
  }
  .foods .container .top .link,
  .drinks .container .top .link {
    background-color: var(--color4);
    padding: 6px 6px;
    border-radius: 10px;
    border: none;
    outline: none;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 30px;
  }
  .drinks {
    background-color: var(--color4);
  }
  .drinks .container .top h2 {
    font-size: 20px;
    color: #fff;
  }
  .drinks .container .top .divider {
    border: 1px dashed #fff;
  }
  .drinks .container .top .link {
    background-color: var(--color2);
  }
  .we-are-open .container {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .we-are-open .container .content {
    flex: 0 0 100%;
  }
  .we-are-open .container .content h2 {
    font-size: 28px;
    line-height: 34px;
    text-transform: capitalize;
    color: #ffffff;
    text-align: center;
    padding-bottom: 6px;
  }
  .we-are-open .container .content .schedule {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 4px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    background-color: var(--color4);
    color: #fff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    position: relative;
  }
  .we-are-open .container .content .schedule img {
    width: 48px;
  }
  .we-are-open .container .content .schedule:before, .we-are-open .container .content .schedule:after {
    z-index: 0;
    border-radius: 10px 10px 0 0;
    content: "";
    position: absolute;
    height: 15%;
    width: 60%;
    background-color: var(--color2);
    left: 20%;
    top: -15%;
  }
  .we-are-open .container .content .schedule:after {
    border-radius: 0 0 10px 10px;
    top: unset;
    bottom: -15%;
  }
  .contact-us {
    background-color: #fff;
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .contact-us .container .contact-form {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    font-family: "Manrope";
    border-radius: 10px;
    width: 100%;
    background-color: var(--color3);
    color: #a0a0a0;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Manrope";
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color4);
    color: var(--color2);
    height: 50px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .location {
    order: 0;
    flex-basis: 100%;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    height: 200px;
  }
  .contact-us .container .location img {
    width: 48px;
    height: 48px;
  }
  .contact-us .container .location img {
    width: 96px;
  }
  .seo {
    background-color: var(--color4);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .map {
    padding: 0 0px;
    margin-bottom: 40px;
  }
  .seo .container h2 {
    font-size: 28px;
    line-height: 36px;
    font-feature-settings: "kern" off;
  }
  .seo .container p {
    font-family: "Manrope";
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: var(--color);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 118px;
  }
  footer .container .details {
    order: 2;
    margin-top: 40px;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color4);
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}/*# sourceMappingURL=style.css.map */