/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Metamorphous&amp;family=Tilt+Neon&amp;display=swap");

@font-face {
  font-family: Typographica;
  src: url(../fonts/typographica/Typographica-Blp5.ttf);
}

/* fonts */

/* universal */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary_font: "Typographica";
  --secondary_font: "Metamorphous";
  --primary_gradient: linear-gradient(180deg,
      #000 20.83%,
      rgba(0, 0, 0, 0.25) 100%);
  --primary_color: #d7a469;
  --black: #000000;
  --white: #ffffff;
}

section {
  overflow: hidden;
}

/* universal */

/* Preloader Start */

.container-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
  z-index: 9999999 !important;
}

.loading-screen {
  position: absolute;
  z-index: 99999 !important;
}

.loader_wrapper {
  width: 200px;
  margin: 10px auto 0;
}

.preloader {
  position: relative;
  height: 8px;
  overflow: hidden;
}

.preloader>* {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-100%);
  background: #0078d4;
  position: absolute;
  animation: preloader 3.5s infinite;
  animation-timing-function: cubic-bezier(0, 1, 1, 0.1);
}

.preloader>*:nth-child(1) {
  animation-delay: 0.5s;
}

.preloader>*:nth-child(2) {
  animation-delay: 1s;
}

.preloader>*:nth-child(3) {
  animation-delay: 1.5s;
}

.preloader>*:nth-child(4) {
  animation-delay: 2s;
}

@keyframes preloader {
  0% {
    left: 0;
  }

  65% {
    left: 100%;
    transform: translateX(100%);
  }

  100% {
    left: 100%;
    transform: translateX(100%);
  }
}

.container-preloader .loader-section {
  background-color: var(--black);
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
}

.loader .logo {
  width: 200px;
  margin: auto;
}

.loaded .loader {
  opacity: 0;
  user-select: none;
  cursor: none;
  pointer-events: none;
  transition: 0.3s ease-out;
}

.loaded .loader-section {
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
  transform: translateY(-101%);
  -webkit-transform: translateY(-101%);
  -moz-transform: translateY(-101%);
  -ms-transform: translateY(-101%);
  -o-transform: translateY(-101%);
}

/* Preloader End */

/* Back to Top Start */

#bact_to_top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 50px;
  width: 50px;
  display: none;
  background: var(--primary_color);
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999 !important;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

#bact_to_top:hover {
  background: var(--black);
}

#bact_to_top svg {
  width: 20px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

#bact_to_top svg path {
  fill: var(--white);
}

/* Back to Top End */

/* Reservation Modal Start */

.reservation_modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 99999 !important;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  overflow: auto;
}

.reservation_modal.active {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

.reservation_modal.active .reservation_modal_wrapper {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}

.reservation_modal_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 700px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-top: 5px solid var(--primary_color);
  border-bottom: 5px solid var(--primary_color);
  border-radius: 10px 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.reservation_shadow {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.reservation_close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 3px;
  cursor: pointer;
}

.reservation_close img {
  width: 100%;
  height: 100%;
}

.reservation_modal_logo {
  width: 100px;
  margin: auto;
}

.reservation_modal_logo img {
  width: 100%;
  height: 100%;
}

.reservation_modal_head h1 {
  color: var(--primary_color);
  font-weight: 700;
  text-align: center;
  font-family: var(--primary_font);
  font-size: 2.5em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
}

.reservation_item input {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-family: var(--secondary_font);
  font-size: 1em;
  color: var(--primary_color);
  border: none;
  outline: none;
  margin: 10px 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.reservation_item input::placeholder {
  color: var(--primary_color);
}

.reservation_select_box {
  background: var(--white);
  height: 45px;
  padding: 12px 15px 0;
  margin-top: 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.reservation_select_box .custom-select {
  color: var(--primary_color);
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-size: 1em;
  font-family: var(--secondary_font);
}

.reservation_modal_btn {
  background: transparent;
  border: none;
  display: block;
  width: 160px;
  margin: 30px auto 0;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: var(--white);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.reservation_modal_btn:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

.counter_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}

.counter_box {
  width: 100px;
  text-align: center;
}

.reservation_item h4 {
  text-align: center;
  font-family: var(--secondary_font);
  color: var(--white);
  font-size: 1em;
}

.reservation_counter {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.reservation_counter_btn {
  background: transparent;
  border: none;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border: 1px solid var(--primary_color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.reservation_counter_btn svg {
  width: 15px;
  height: 15px;
}

.reservation_counter_btn svg path {
  stroke: var(--primary_color);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.reservation_counter_btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.reservation_counter_btn:hover path {
  stroke: var(--white);
}

.reservation_counter_value {
  width: 30px;
  font-family: var(--secondary_font);
  color: var(--white);
  font-style: 1.1em;
  border-bottom: 2px solid var(--primary_color);
  text-align: center;
}

@media screen and (max-width: 990px) {
  .reservation_modal {
    height: auto;
  }

  .reservation_modal_wrapper {
    width: 100%;
  }
}

/* Reservation Modal End */


/* Navbar Start */

#navbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #ffd29ff5 !important;
  z-index: 9999 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.navbar_active {
  position: fixed !important;
  left: 0;
  right: 0;
  top: 0;
  background: var(--black) !important;
  animation: sticky 0.5s linear 1;
  -webkit-animation: sticky 0.5s linear 1;
}

@keyframes sticky {
  0% {
    top: -100px;
  }

  100% {
    top: 0;
  }
}

.navbar_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}

.navbar_wrapper .logo {
  width: 100px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.navbar_active .logo {
  width: 55px;
}

.nav_items {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_items .nav_item {
  display: flex;
}

.nav_items .nav_item .nav_link {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-family: var(--secondary_font);
  font-size: 0.9em;
  position: relative;
  display: block;
  padding: 2px 18px;
  margin: 0 3px;
  border-radius: 6px 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: 0.6s;
}

.main-menu .nav_item .nav_link {
  text-decoration: none;
  color: var(--white) !important;
  text-transform: uppercase !important;
  font-family: var(--secondary_font) !important;
  font-size: 1.1em;
  position: relative;
  display: block;
  padding: 2px 18px !important;
  margin: 0 3px;
  border-radius: 6px 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: 0.6s;
}

.nav_item .nav_link:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.nav_item .nav_link i {
  color: var(--primary_color);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.nav_items .nav_item .nav_link.active,
.nav_items .nav_item .nav_link:hover {
  color: #000;
  border-top: 2px solid var(--primary_color);
  border-bottom: 2px solid var(--primary_color);
}

.nav_open_btn {
  background: none;
  border: none;
}

.nav_open_btn i {
  color: #000;
  font-size: 2em;
  cursor: pointer;
  display: none;
}

.nav_close_btn {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3em;
  color: var(--white);
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--primary_color);
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

/* Dropdown Start */
.dropdown {
  position: relative;
}

.dropdown .dropdown-toggle {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--secondary_font);
  font-size: 1.1em;
  padding: 2px 18px;
  margin: 0 3px;
  border-radius: 6px 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: 0.6s;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown .dropdown-toggle i {
  margin-left: 5px;
}

.dropdown .dropdown-toggle:hover {
  color: var(--white);
  border-top: 2px solid var(--primary_color);
  border-bottom: 2px solid var(--primary_color);
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  list-style: none;
  background: var(--white);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary_color);
  border-radius: 6px;
  z-index: 3000;
  padding-left: 0px !important;
}

.sub-menu li {
  padding: 0;
}

.sub-menu li a {
  font-size: 0.9em;
  text-decoration: none;
  font-family: var(--secondary_font);
  color: var(--primary_color);
  text-align: center;
  padding: 10px 0;
  display: block;
}

.sub-menu li a.active,
.sub-menu li a:hover {
  background-color: var(--primary_color);
  color: var(--white) !important;
}

/* Show dropdown on hover for desktop */
@media only screen and (min-width: 990px) {
  .dropdown:hover .sub-menu {
    display: block;
  }
}

/* Show dropdown on click for mobile */
@media only screen and (max-width: 990px) {
  .dropdown.active .sub-menu {
    display: block;
  }
}


/* Dropdown End */

@media screen and (max-width: 1200px) {
  .nav_items .nav_item .nav_link {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 990px) {
  .navbar_wrapper .logo {
    width: 100px;
  }

  .nav_items_wrapper {
    padding: 80px 0 0 50px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgb(0 0 0 / 93%);
    z-index: 999999 !important;
    transition: all 0.5s;
    overflow-y: scroll;
  }
  
  .nav_items {
    display: block;
  }

  .nav_items_wrapper::-webkit-scrollbar {
    width: 6px;
    background: rgba(155, 155, 155, 0.7);
  }

  .nav_items_wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary_color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
  }

  .nav_items_wrapper .nav_item .nav_link {
    margin: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    color: #fff;
  }

  .nav_items_wrapper .nav_item {
    margin: 15px 0;
  }

  .nav_open_btn i {
    display: block;
  }

  .nav_close_btn {
    display: block;
  }
}

/* Navbar End */























/* Hero End  */

.emailjs_response {
  font-family: var(--secondary_font);
  color: var(--primary_color);
  margin-top: 10px;
  margin-bottom: 0;
}

/* Footer Start */

#footer {
  background-color: #1c1c1c;
}

.footer_logo {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 40px;
}

.footer_logo img {
  width: 250px;
}

.footer_contact {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.footer_contact_icon {
  width: 70px;
  height: 70px;
}

.footer_contact_icon svg {
  width: 100%;
  height: 100%;
}

.footer_contact a {
  display: inline-block;
  width: calc(100% - 70px);
  font-family: var(--secondary_font);
  color: var(--white);
  text-decoration: none;
  font-size: 1.2em;
  margin-left: 15px;
}

.footer_contact a:hover {
  color: var(--white);
}

.footer_nav_items {
  list-style: none;
  margin: 60px 0 80px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer_nav_items li a {
  display: flex;
  font-size: 1em;
  font-family: var(--secondary_font);
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  position: relative;
  display: block;
  transition: 0.3s;
}

.footer_nav_items li a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary_color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.footer_nav_items li a:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left;
  left: 0;
}

.footer_social_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.footer_social_icons a {
  text-decoration: none;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  color: var(--primary_color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary_color);
  border-radius: 50%;
  transition: all 0.5s;
}

.footer_social_icons a:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

.copyright {
  border-top: 1px solid var(--primary_color);
}

.copyright p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--secondary_font);
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  padding: 25px 0;
}

.copyright p span {
  color: var(--primary_color);
  font-size: 1.8em;
  margin-right: 5px;
}

@media screen and (max-width: 1200px) {
  .footer_contact_icon {
    width: 50px;
    height: 50px;
  }

  .footer_contact a {
    display: inline-block;
    width: calc(100% - 50px);
    font-size: 1em;
  }
}

@media screen and (max-width: 990px) {
  .footer_logo {
    margin-top: 30px;
  }

  .footer_logo img {
    width: 180px;
  }

  .copyright p {
    display: block;
    font-size: 0.9em;
  }

  .copyright p span {
    font-size: 1.4em;
    margin-right: 0;
  }

  /* 
  .footer_nav_items {
    margin: 60px 0 80px;
    display: inline-block;
    text-align: center;
    gap: 30px;
  } */
}

/* Footer End */