html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none !important;
}

.container {
  max-width: 1920px !important;
  padding: 0 50px !important;
}
@media (max-width: 575.98px) {
  .container {
    padding: 0 30px !important;
  }
}

.row {
  max-width: 100%;
  margin: auto !important;
  padding: 0 12px;
}

nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9999;
}
nav .topbar {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
nav .topbar > .container {
  padding: 0 !important;
}
nav .topbar > .container > .row {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 30px;
}
nav .topbar > .container > .row .socials,
nav .topbar > .container > .row .location,
nav .topbar > .container > .row .contact {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0;
}
nav .topbar > .container > .row .socials > a,
nav .topbar > .container > .row .location > a,
nav .topbar > .container > .row .contact > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
nav .topbar > .container > .row .socials > a > img,
nav .topbar > .container > .row .location > a > img,
nav .topbar > .container > .row .contact > a > img {
  max-width: 16px;
  max-height: 16px;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(99%) sepia(60%) saturate(5%) hue-rotate(41deg) brightness(109%) contrast(100%);
}
nav > .container > .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px 0;
}
nav > .container > .row .left,
nav > .container > .row .right {
  display: flex;
  align-items: center;
  min-width: 15%;
  max-width: 15%;
}
@media (max-width: 991.98px) {
  nav > .container > .row .left,
  nav > .container > .row .right {
    display: none;
  }
}
nav > .container > .row .left > a,
nav > .container > .row .right > a {
  color: white;
  border: 1px solid white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 20px;
  text-align: center;
}
nav > .container > .row .right {
  justify-content: end;
}
@media (max-width: 1199.98px) {
  nav > .container > .row .right > a {
    display: none;
  }
}
nav > .container > .row .middle {
  display: flex;
  justify-content: center;
  min-width: 70%;
}
nav > .container > .row .middle .left-navigation,
nav > .container > .row .middle .right-navigation {
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767.98px) {
  nav > .container > .row .middle .left-navigation,
  nav > .container > .row .middle .right-navigation {
    display: none;
  }
}
nav > .container > .row .middle .left-navigation > ul,
nav > .container > .row .middle .right-navigation > ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  gap: 40px;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199.98px) {
  nav > .container > .row .middle .left-navigation > ul,
  nav > .container > .row .middle .right-navigation > ul {
    gap: 20px;
  }
}
nav > .container > .row .middle .left-navigation > ul > li > a,
nav > .container > .row .middle .right-navigation > ul > li > a {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199.98px) {
  nav > .container > .row .middle .left-navigation > ul > li > a,
  nav > .container > .row .middle .right-navigation > ul > li > a {
    font-size: 15px;
  }
}
nav > .container > .row .middle .left-navigation {
  justify-content: end;
}
nav > .container > .row .middle .right-navigation {
  justify-content: start;
}
nav > .container > .row .middle .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}
@media (max-width: 991.98px) {
  nav > .container > .row .middle .logo {
    flex-direction: column;
  }
}
nav > .container > .row .middle .logo > a {
  color: white;
}
nav > .container > .row .middle .logo > a > h1 {
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 4px;
}
nav > .container > .row .middle .logo > a > h1 > span {
  display: block;
  text-align: center;
  font-size: 25px;
  letter-spacing: 17px;
  margin-left: 12px;
}
nav > .container > .row .middle .logo .mobile-nav {
  display: none;
}
@media (max-width: 767.98px) {
  nav > .container > .row .middle .logo .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
nav > .container > .row .middle .logo .mobile-nav > ul {
  display: flex;
  list-style-type: none;
  gap: 20px;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
nav > .container > .row .middle .logo .mobile-nav > ul > li {
  min-width: max-content;
}
nav > .container > .row .middle .logo .mobile-nav > ul > li > a {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease-in-out;
}

.page-template-page-menu nav {
  position: unset;
  border-bottom: 1px solid black;
}
.page-template-page-menu nav .topbar {
  border-bottom: 1px solid black;
}
.page-template-page-menu nav .topbar > .container > .row .socials > a,
.page-template-page-menu nav .topbar > .container > .row .location > a,
.page-template-page-menu nav .topbar > .container > .row .contact > a {
  color: black;
}
.page-template-page-menu nav .topbar > .container > .row .socials > a > img,
.page-template-page-menu nav .topbar > .container > .row .location > a > img,
.page-template-page-menu nav .topbar > .container > .row .contact > a > img {
  filter: brightness(0) saturate(100%);
}
.page-template-page-menu nav > .container > .row .left > a,
.page-template-page-menu nav > .container > .row .right > a {
  color: black;
  border: 1px solid black;
}
.page-template-page-menu nav > .container > .row .middle .left-navigation > ul > li > a,
.page-template-page-menu nav > .container > .row .middle .right-navigation > ul > li > a {
  color: black;
}
.page-template-page-menu nav > .container > .row .middle .logo > a {
  color: black;
}
.page-template-page-menu nav > .container > .row .middle .logo .mobile-nav > ul > li > a {
  color: black;
}

.header {
  background-image: url("../images/header/ingredients.jpg");
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header > .container {
  padding: 0 !important;
}
.header > .container > .row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.header > .container > .row .overlay {
  min-height: 100vh;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
}
.header > .container > .row > .col-12 {
  position: relative;
  top: 50px;
  z-index: 999;
  padding: 0 30px;
}
.header > .container > .row > .col-12 .subtitle {
  font-family: "Sacramento", serif;
  font-size: 60px;
  color: white;
  text-align: center;
  line-height: 1;
}
.header > .container > .row > .col-12 h1 {
  text-align: center;
  font-size: 60px;
  letter-spacing: 5px;
  margin: 20px 0;
  color: white;
  line-height: 1;
}
.header > .container > .row > .col-12 p {
  font-size: 17px;
  line-height: 1.4;
  color: white;
  text-align: center;
  max-width: 450px;
  margin: auto;
}

.about-us {
  padding: 150px 0;
  background-color: #f9f9f6;
}
.about-us > .container > .row > .col-12 .subtitle {
  font-family: "Sacramento", serif;
  font-size: 60px;
  color: #0b5d4d;
  text-align: center;
  line-height: 1;
}
.about-us > .container > .row > .col-12 h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 35px;
  letter-spacing: 5px;
  margin: 0;
  margin-bottom: 30px;
  color: black;
  line-height: 1;
}
.about-us > .container > .row > .col-12 p {
  font-size: 17px;
  line-height: 1.4;
  color: black;
  opacity: 0.7;
  text-align: center;
  max-width: 580px;
  margin: auto;
}

.menu {
  padding: 150px 0;
}
.menu > .container > .row {
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .menu > .container > .row {
    flex-direction: column;
    gap: 50px;
  }
}
.menu > .container > .row > .col-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .menu > .container > .row > .col-6 {
    width: 100%;
  }
}
.menu > .container > .row > .col-6 .subtitle {
  font-family: "Sacramento", serif;
  font-size: 60px;
  color: #0b5d4d;
  text-align: center;
  line-height: 1;
}
.menu > .container > .row > .col-6 h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 35px;
  letter-spacing: 5px;
  margin: 0;
  margin-bottom: 30px;
  color: black;
  line-height: 1;
}
.menu > .container > .row > .col-6 p {
  font-size: 17px;
  line-height: 1.4;
  color: black;
  opacity: 0.7;
  text-align: center;
  max-width: 580px;
  margin: auto;
}
.menu > .container > .row > .col-6 > a {
  color: black;
  border: 2px solid black;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 20px;
  margin-top: 35px;
}
.menu > .container > .row > .col-6 .menu {
  background-image: url("../images/menu/menu.png");
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-preview {
  padding: 150px 0;
  background-color: #f9f9f6;
}
.menu-preview > .container > .row {
  justify-content: center;
  align-items: center;
}
.menu-preview > .container > .row > .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-preview > .container > .row > .col-12 h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 5px;
  margin: 0;
  margin-bottom: 60px;
  color: black;
  line-height: 1;
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: white;
  width: 75%;
  max-width: 1060px;
  padding: 60px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper {
    gap: 50px;
  }
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper {
    gap: 0;
  }
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-size: cover;
  background-position: center;
  border-radius: 100px;
  background-color: #0b5d4d;
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .image > img {
  max-width: 50px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(19%) saturate(350%) hue-rotate(91deg) brightness(116%) contrast(100%);
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information {
  margin-top: 30px;
  width: 100%;
  max-width: 72%;
}
@media (max-width: 767.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information {
    max-width: 100%;
  }
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper > .title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
}
@media (max-width: 767.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper > .title {
    text-align: center;
  }
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper > .title > .vegetarian > img {
  max-width: 15px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(9%) saturate(6180%) hue-rotate(129deg) brightness(84%) contrast(91%);
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .title-wrapper > .price {
  font-weight: 800;
  opacity: 0.7;
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information .custom-dotted-border {
  border: none;
  height: 3px;
  background: radial-gradient(circle, #0b5d4d 1px, transparent 1.5px) repeat-x;
  background-size: 7px 100%;
  margin: 10px 0;
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .description {
  max-width: 80%;
  font-size: 15px;
  opacity: 0.6;
}
@media (max-width: 767.98px) {
  .menu-preview > .container > .row > .col-12 > .menu-wrapper > .inner-wrapper > .information > .description {
    max-width: 100%;
    text-align: center;
  }
}
.menu-preview > .container > .row > .col-12 > .menu-wrapper > .see-full-menu {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  width: 100%;
  color: black;
  border: 2px solid black;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 20px;
  margin-top: 35px;
  width: max-content;
}
.menu-preview > .container > .row > .col-12 p {
  font-size: 17px;
  line-height: 1.4;
  color: black;
  opacity: 0.7;
  text-align: center;
  max-width: 580px;
  margin: auto;
}
.menu-preview > .container > .row > .col-12 > a {
  color: black;
  border: 2px solid black;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 20px;
  margin-top: 35px;
}

.gallery {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .gallery > .col-3 {
    width: 50%;
  }
}
.gallery > .col-3 > .gallery-item {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199.98px) {
  .gallery > .col-3 > .gallery-item {
    min-height: 250px;
  }
}
@media (max-width: 991.98px) {
  .gallery > .col-3 > .gallery-item {
    min-height: 185px;
  }
}

.menu-grid-container {
  overflow: hidden;
  /* Title and price container flex children */
  /* Dots filling the space between title and price */
}
.menu-grid-container .menu-grid {
  column-count: 3; /* 3 columns */
  column-gap: 2rem; /* gap between columns */
  max-width: 1920px;
  min-width: 1400px;
  max-height: 1080px;
  padding: 100px 50px;
  margin: 0 auto;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .menu-grid-container .menu-grid {
    padding: 50px 30px !important;
  }
}
.menu-grid-container .menu-category {
  margin: 1.5rem 0;
}
.menu-grid-container .menu-category:first-of-type {
  margin-top: 0;
}
.menu-grid-container .menu-category > h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 12px;
}
.menu-grid-container .menu-category > p {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
}
.menu-grid-container .menu-item {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
}
.menu-grid-container .menu-item-title-price {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.menu-grid-container .menu-number {
  font-size: 14px;
  margin-right: 5px;
}
.menu-grid-container .menu-title {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.menu-grid-container .menu-price {
  white-space: nowrap;
  margin-left: auto;
  font-size: 14px;
}
.menu-grid-container .menu-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #888;
  margin: 0 0.5rem;
  height: 1px;
  align-self: end;
  margin-bottom: 7px;
}
.menu-grid-container .menu-excerpt {
  font-size: 0.9rem;
  color: #555;
  margin-left: 0.2rem;
  font-weight: 300;
  font-style: italic;
}

.footer {
  padding: 150px;
  background-color: #f9f9f6;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199.98px) {
  .footer {
    padding: 150px 50px;
  }
}
@media (max-width: 575.98px) {
  .footer {
    padding: 75px 0px;
  }
}
.footer > .container > .row {
  gap: 50px;
}
.footer > .container > .row > .col-4 {
  padding: 0;
  width: calc(33.33333333% - 33.5px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .footer > .container > .row > .col-4 {
    width: calc(50% - 33.5px);
  }
}
@media (max-width: 767.98px) {
  .footer > .container > .row > .col-4 {
    width: 100% !important;
  }
}
@media (max-width: 991.98px) {
  .footer > .container > .row > .col-4:first-of-type {
    width: 100%;
  }
}
.footer > .container > .row > .col-4 > .title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
}
.footer > .container > .row > .col-4 > .desc {
  font-size: 15px;
  line-height: 1.4;
  color: black;
  opacity: 0.6;
}
.footer > .container > .row > .col-4 > .footer-logo {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .footer > .container > .row > .col-4 > .footer-logo {
    display: none;
  }
}
.footer > .container > .row > .col-4 > .footer-logo > a {
  color: black;
}
.footer > .container > .row > .col-4 > .footer-logo > a > h1 {
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  text-align: center;
  line-height: 1;
  margin-top: 42px;
  margin-left: -10px;
  letter-spacing: 4px;
}
.footer > .container > .row > .col-4 > .footer-logo > a > h1 > span {
  display: block;
  text-align: center;
  font-size: 25px;
  letter-spacing: 12px;
  margin-left: 14px;
}
.footer > .container > .row > .col-4 > .opening-hours {
  display: flex;
  margin-top: 25px;
}
@media (max-width: 767.98px) {
  .footer > .container > .row > .col-4 > .opening-hours > .col-6 {
    width: 25%;
    min-width: 110px;
  }
}
.footer > .container > .row > .col-4 > .opening-hours > .col-6 > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer > .container > .row > .col-4 > .opening-hours > .col-6 > ul > li {
  opacity: 0.6;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}
.footer > .container > .row > .col-4 .socials,
.footer > .container > .row > .col-4 .location,
.footer > .container > .row > .col-4 .contact {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0;
}
.footer > .container > .row > .col-4 .socials > a,
.footer > .container > .row > .col-4 .location > a,
.footer > .container > .row > .col-4 .contact > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: black;
}
.footer > .container > .row > .col-4 .socials > a > img,
.footer > .container > .row > .col-4 .location > a > img,
.footer > .container > .row > .col-4 .contact > a > img {
  max-width: 25px;
  max-height: 25px;
  width: 100%;
  height: 100%;
}
.footer > .container > .row > .col-4 .socials {
  margin: 80px 0 30px;
}
@media (max-width: 767.98px) {
  .footer > .container > .row > .col-4 .socials {
    margin: 25px 0 30px;
  }
}
.footer > .container > .row > .col-4 .location > a,
.footer > .container > .row > .col-4 .contact > a {
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.footer > .container > .row > .col-4 .location > a > img,
.footer > .container > .row > .col-4 .contact > a > img {
  opacity: 1;
}
.footer > .container > .row > .col-4 .location > a > span,
.footer > .container > .row > .col-4 .contact > a > span {
  opacity: 0.6;
  font-size: 14px;
}
.footer > .container > .row > .col-4 .contact {
  margin-bottom: 10px;
}

.bottom-bar {
  background-color: black;
}
.bottom-bar > .copyright > p {
  color: white;
  margin: 0;
  text-align: center;
  padding: 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */