/*
----------------------------------------
RESET
----------------------------------------
*/

.hs-navigation ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

/*
==================================================
SKIP LINK
==================================================
*/

.hs-skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100000;
  padding: 12px 18px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border: 2px solid var(--hs-gold);
  transition: top 0.2s ease;
}

.hs-skip-link:focus {
  top: 20px;
}

/*
----------------------------------------
TOP LEVEL MENU
----------------------------------------
*/

.hs-logo {
  flex: 0 0 280px;
}

.hs-navigation {
  flex: 1;
}

.hs-navigation a {
  white-space: nowrap;
}

.hs-navigation > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

/*
ONLY TOP LEVEL ITEMS
----------------------------------------
*/

.hs-navigation > ul > li {
  position: relative;
}

/*
ONLY TOP LEVEL LINKS
----------------------------------------
*/

.hs-navigation > ul > li > a {
  display: inline-flex;

  align-items: center;

  color: #ffffff;

  text-decoration: none;

  padding: 12px 0;
}

/*
----------------------------------------
SUBMENUS
----------------------------------------
*/

.hs-navigation .sub-menu {
  position: absolute;

  top: calc(100% - 10px);

  left: 20px;

  display: none;

  background: #111111;

  min-width: 260px;

  padding: 12px 0;

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

  z-index: 9999;
}

/*
SHOW ON HOVER
----------------------------------------
*/

.hs-navigation li:hover > .sub-menu,
.hs-navigation li:focus-within > .sub-menu {
  display: block;
}

/*
SUBMENU ITEMS
----------------------------------------
*/

.hs-navigation .sub-menu li {
  position: relative;
}

/*
SUBMENU LINKS
----------------------------------------
*/

.hs-navigation .sub-menu a {
  display: block;

  padding: 10px 20px;

  color: #ffffff;

  white-space: nowrap;

  text-decoration: none;
}

/*
SECOND LEVEL SUBMENU
----------------------------------------
*/

.hs-navigation .sub-menu .sub-menu {
  top: 100%;

  left: 0;
}

/*
HOVER
----------------------------------------
*/

.hs-navigation a:hover {
  color: #d4af37;
}

/*
ARROWS
----------------------------------------
*/

.hs-navigation .menu-item-has-children > a::after {
  content: " ▼";

  font-size: 10px;

  margin-left: 6px;
}

/*
==================================================
MOBILE MENU TOGGLE
==================================================
*/

.hs-mobile-toggle {
  display: none;

  background: none;

  border: none;

  cursor: pointer;

  padding: 0;

  width: 32px;

  height: 28px;

  position: relative;

  z-index: 10001;
}

.hs-mobile-toggle span {
  display: block;

  width: 100%;

  height: 3px;

  background: #ffffff;

  margin: 5px 0;

  transition: all 0.3s ease;
}

/*
==========================================
FOOTER
==========================================
*/

.hs-footer {
  padding: 30px 0;
}

/*
==========================================
FOOTER LAYOUT
==========================================
*/

.hs-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/*
==========================================
COPYRIGHT
==========================================
*/

.hs-footer-copyright {
  margin: 0;
}

/*
==========================================
FOOTER MENU
==========================================
*/

.hs-footer-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-footer-menu li {
  margin: 0;
  padding: 0;
}

.hs-footer-menu a {
  text-decoration: none;
}

/*
==========================================
FOCUS STATES
==========================================
*/

.hs-footer-menu a:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/*
==========================================
MOBILE
==========================================
*/

@media (max-width: 768px) {
  .hs-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hs-footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*
==================================================
MOBILE MENU CLOSE BUTTON
==================================================
*/

.hs-mobile-close {
  position: absolute;

  top: 20px;

  right: 20px;

  background: none;

  border: none;

  color: #ffffff;

  font-size: 36px;

  cursor: pointer;
}

/*
==================================================
MOBILE OVERLAY
==================================================
*/

.hs-mobile-overlay {
  position: fixed;
  pointer-events: none;
  inset: 0;

  background: rgba(0, 0, 0, 0.7);

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.3s ease;

  z-index: 9998;
}

.hs-mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/*
==================================================
OFF CANVAS MOBILE NAV
==================================================
*/

.hs-mobile-nav {
  position: fixed;

  top: 0;

  right: -320px;

  width: 300px;

  height: 100vh;

  background: #000000;

  padding: 80px 25px 40px;

  transition: right 0.3s ease;

  overflow-y: auto;

  z-index: 9999;

  border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.hs-mobile-nav.active {
  right: 0;
}

/*
================================================
Back To Top
================================================
*/

.hs-back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 950;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border: 2px solid var(--hs-red);
  border-radius: 6px;

  background: #181818;
  color: var(--hs-red);

  cursor: pointer;

  font-size: 1.4rem;
  font-weight: 700;

  opacity: 0;
  visibility: hidden;

  transition: all 0.2s ease-in-out;
}

/*
 Visible State
*/

.hs-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/*
 Hover / Focus
*/

.hs-back-to-top:hover,
.hs-back-to-top:focus {
  background: var(--hs-red);
  color: #ffffff;
  outline-offset: 3px;
}

/*
 Mobile
*/

@media (max-width: 768px) {
  .hs-back-to-top {
    right: 20px;
    bottom: 20px;

    width: 46px;
    height: 46px;
  }
}

/*
==================================================
BODY LOCK
==================================================
*/

body.hs-menu-open {
  overflow: hidden;
}

/*
==================================================
MOBILE NAV MENU STYLING
==================================================
*/

.hs-mobile-nav ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.hs-mobile-nav li {
  margin-bottom: 12px;
}

.hs-mobile-nav a {
  display: block;

  color: #ffffff;

  text-decoration: none;

  padding: 10px 0;

  font-size: 18px;
}

/*
SUBMENUS MOBILE
(no hover dropdowns)
*/

.hs-mobile-nav .sub-menu {
  position: static;

  display: block;

  background: transparent;

  border: none;

  box-shadow: none;

  min-width: auto;

  padding-left: 15px;

  margin-top: 8px;
}

.hs-mobile-nav .sub-menu a {
  font-size: 15px;

  opacity: 0.8;
}

/*
REMOVE ARROWS MOBILE
*/

.hs-mobile-nav .menu-item-has-children > a::after {
  display: none;
}

/*
==================================================
RESPONSIVE BREAKPOINT
==================================================
*/

@media (max-width: 1200px) {
  /*
    Hide desktop nav
    */

  .hs-desktop-nav {
    display: none;
  }

  /*
    Show hamburger
    */

  .hs-mobile-toggle {
    display: block;
  }

  /*
    Better header alignment
    */

  .hs-header .hs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /*
    Prevent giant logo
    */

  .hs-logo img {
    max-width: 180px;

    height: auto;
  }
}
