/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #35211f;
  --heading-color: #200f0d;
  --accent-color: #f95e4d;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav-specific variables */
:root {
  --nav-font: McQueen, 'Poppins', sans-serif;
  --nav-color: #ffffff;
  --nav-hover-color: #f95e4d;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #35211f;
  --nav-dropdown-hover-color: #BB9A49;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);

  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0.55rem 0;
  min-height: 92px;
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
  max-width: 1400px;
  min-height: 76px;
  padding: 0 2rem;
}

/* Keep header always visible like before */
.header.header-hide,
.header.header-show {
  transform: translateY(0);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
  width: auto;
  height: 75px;
  display: block;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background-color: #ffffff;
  color: #BB9A49;
  padding: 12px 24px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 !important;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #000000;
}

@media (max-width: 1366px) {
  .header .btn-getstarted {
    padding: 11px 20px;
    min-height: 52px;
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
    display: none;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #121212;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================
   Destinations: vertical dropdown on desktop
   Tours remains mega menu
========================================== */
@media (min-width: 1200px) {
  .header .navmenu .dropdown.dropdown-destination {
    position: relative;
  }

  .header .navmenu .dropdown.dropdown-destination > ul {
    display: block;
    flex-wrap: nowrap;
    width: 280px;
    margin: 20px 0 0 0;
    padding: 10px 0;
    position: absolute;
    left: 0;
    right: auto;
    top: 100%;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 9999;
  }

  .header .navmenu .dropdown.dropdown-destination > ul > li {
    width: 100%;
  }

  .header .navmenu .dropdown.dropdown-destination > ul > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
    white-space: normal;
  }

  .header .navmenu .dropdown.dropdown-destination:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Shared typography */
.header,
.header .logo h1,
.header .navmenu a,
.header .navmenu .dropdown > ul > li > a,
.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-family: McQueen, 'Poppins', sans-serif;
}

a {
  color: #BB9A49;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #d4af37;
  text-decoration: none;
}