@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&family=Murecho:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Kufam", sans-serif;
  --secondary-font: "Murecho", sans-serif;
  --primary-color: #d7a469;
  --secondary-color: #f7b935;
  --btn-hover: #ffcd29;
  --bg-1: #ffffff;
  --bg-2: #000000;
  --text-color-1: #000000;
  --text-color-2: #7d7d7d;
  --text-color-3: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

.container {
  max-width: 1340px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Preloader Start */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.center-circle {
  width: 130px;
  height: 130px;
  background: none;
  border-radius: 50%;
  border: 3px solid #fab41d;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseOutline 3s infinite;
}

#preloader-logo {
  width: 80px;
  opacity: 0;
  animation: fadeIn 2.5s ease-in-out forwards,
    zoomBounce 2.5s ease-in-out infinite;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulseOutline {
  50% {
    box-shadow: 0 0 0 30px rgba(250, 180, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(250, 180, 29, 0.5);
  }

  0% {
    box-shadow: 0 0 0 0 rgba(250, 180, 29, 0.5);
  }
}

@keyframes zoomBounce {
  0% {
    transform: scale(1) translateY(0);
  }

  20% {
    transform: scale(1.1) translateY(-4px);
  }

  40% {
    transform: scale(1) translateY(0);
  }

  60% {
    transform: scale(1.1) translateY(-4px);
  }

  80% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* Preloader End */

/* Navbar Start */

#navbar_wrapper {
  position: fixed;
  width: 100%;
  top: 20px;
  z-index: 99;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(255, 255, 255, 50%);
  border-radius: 60px;
  padding: 0px 14px;
  width: 100%;
  transition: background-color 0.2s ease;
  z-index: 99999;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.navbar .logo {
  display: flex;
  align-items: center;
  width: 250px;
}

.navbar .logo img {
  width: 100%;
}

.navbar .menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .book-now-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background: var(--secondary-color);
  border-radius: 40px;
  padding: 10px 20px;
  transition: 0.4s;
}

.navbar .book-now-btn:hover {
  background: var(--bg-1);
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.menu-toggle .menu-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: var(--secondary-color);
  transition: 0.4s;
}

.menu-toggle .menu-icon:hover {
  background: var(--bg-1);
}

.menu-toggle .menu-icon img {
  width: 18px;
  height: 18px;
}

.menu-toggle .menu-text {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-3);
}

.nav_toggle {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: -100%;
  width: 100%;
  transition: left 0.6s ease;
  background: #00000082;
  z-index: 999999;
}

.nav_toggle .modal-content {
  max-width: 430px;
  height: 100vh;
  margin-top: 100px;
  height: calc(100vh - 103px);
  background-color: var(--bg-1);
  padding: 40px 50px 20px 70px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  border: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  overflow-y: scroll;
}

/* Scrollbar */
.nav_toggle .modal-content::-webkit-scrollbar {
  width: 8px;
  height: 12px;
  
}

.nav_toggle .modal-content::-webkit-scrollbar-track {
  background: var(--bg-1);
  border-top-right-radius: 30px !important;
  border-top-left-radius: 0px !important;
  border-bottom-right-radius: 30px !important;
  border-bottom-left-radius: 0px !important;
}

.nav_toggle .modal-content::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

/* Scrollbar */

.nav_toggle .modal-content-wrapper {
  margin-bottom: 200px;
}

.nav_toggle .modal-content .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color-1);
  font-family: var(--primary-font);
  margin-bottom: 30px;
}

.nav_toggle .modal-content ul li a {
  color: var(--text-color-1);
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  transition: 0.4s;
}

.nav_toggle .modal-content ul li:hover a {
  color: var(--secondary-color);
}

.nav_toggle .modal-content ul li::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 10px;
  background: var(--text-color-2);
  transition: width 0.4s;
}

.nav_toggle .modal-content ul li:hover::after {
  width: 100%;
}

.nav_toggle .modal-content .sign-in-btn {
  display: block;
  font-size: 18px;
  background: none;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  font-weight: 600;
  border: 1px solid var(--secondary-color);
  border-radius: 40px;
  padding: 8px 30px;
  margin-top: 10px;
  transition: 0.4s;
}

.nav_toggle .modal-content .sign-in-btn:hover {
  background: var(--secondary-color);
  color: var(--text-color-1);
}

.nav_toggle .close-btn {
  position: absolute;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border: 1px solid var(--bg-2);
  border-radius: 50%;
  transition: 0.4s;
}

.nav_toggle .close-btn:hover {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

@media (max-width: 992px) {
  .nav_toggle .modal-content {
    max-width: 430px;
    height: calc(100vh - 103px) !important;
    padding: 60px 50px 60px 70px;
  }

  .nav_toggle .modal-content .title {
    margin-bottom: 25px;
  }

  .nav_toggle .modal-content li {
    margin-bottom: 4px !important;
  }

  .button-wrapper {
    display: none;
  }

  .navbar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
  }

  .navbar .logo {
    width: 50px;
    margin-right: 8px;
  }

  .menu-toggle .menu-icon {
    width: 40px;
    height: 40px;
  }

  .menu-toggle .menu-icon img {
    width: 16px;
    height: 16px;
  }

  .menu-toggle span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--text-color-3);
  }

  .navbar .book-now-btn {
    font-size: 14px;
    padding: 6px 10px;
  }

  .nav_toggle .modal-content .sign-in-btn {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav_toggle .modal-content ul li a {
    font-weight: 500 !important;
  }
}

@media (max-width: 576px) {
  .nav_toggle .modal-content {
    margin-top: 95px;
    width: 300px;
    background-color: var(--bg-1);
    padding: 60px 20px 20px 20px;
  }
}

/* Navbar End */

/* Map Start */
.map-section {
  position: relative;
  width: 100%;
  height: 430px;
  background: var(--bg-1);
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

.contact-box-wrapper {
  position: absolute;
  top: 50px;
}

.contact-box {
  width: 100%;
  margin-top: -12px;
  background: var(--bg-1);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--Accent-v2-Ash-1, #c9c9c9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-box p {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-color-2);
}

.contact-box .contact {
  display: flex;
  flex-direction: column;
}

.contact-box .contact a {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-color-2);
}

.contact-box h2 {
  font-size: 22px;
  font-family: var(--primary-font);
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-box .direction-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  background: transparent;
  color: var(--text-color-1);
  border: 1px solid var(--secondary-color);
  padding: 10px 30px 12px 30px;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.4s;
  margin: 30px 0px 10px 0px;
}

.contact-box .direction-btn:hover {
  background: var(--secondary-color);
}

.social-icons {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.social-icons a i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  color: var(--text-color-3);
  background: var(--text-color-1);
  border: 1px solid var(--text-color-1);
  transition: 0.4s;
}

.social-icons a i:hover {
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  color: var(--bg-2);
}

@media screen and (max-width: 992px) {
  .map-section {
    height: 430px;
  }

  .contact-box-wrapper {
    width: 95%;
    top: 40px;
  }

  .contact-box {
    max-width: 40%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .map-section {
    width: 100%;
    height: 420px;
    padding: 0px !important;
  }

  .contact-box {
    max-width: 50%;
    padding: 30px;
  }

  .contact-box p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-box .direction-btn {
    font-size: 18px;
    padding: 6px 20px 8px 20px;
    margin: 10px 0px 10px 0px;
  }
}

@media screen and (max-width: 576px) {
  .contact-box {
    display: none;
  }

  .map-section {
    height: 440px;
  }
}

/* Map End */

/* Footer Start */
#footer {
  background: var(--bg-2);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-content .footer-logo {
  width: 120px;
  margin: 10px 0px 20px 0px;
}

.footer-content .footer-logo img {
  width: 80%;
}

#footer .footer-item ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

#footer .footer-item ul li {
  margin: 5px 12px 10px 12px;
}

#footer .footer-item ul li a {
  font-size: 16px;
  color: var(--text-color-3);
  font-family: var(--secondary-font);
  font-weight: 500;
  transition: 0.4s;
}

#footer .footer-item ul li a:hover {
  color: var(--secondary-color);
}

#footer p {
  font-size: 16px;
  margin-top: 40px;
  padding: 0 60px;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
}

/* Footer End */

/* Back to top button Start */
.back-to-top {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 40px;
  display: none;
  background-color: transparent;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.back-btn-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.back-to-top i {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-color-1);
  width: 44px;
  font-size: 24px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-color);
}

.back-to-top.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top.hide {
  opacity: 0;
  transform: translateY(20px);
}

/* Back to top button End */
