/* Flora Hills Global Public UI */

/* Header Layer */
.nav {
  z-index: 1000;
}

/* Active Menu */
.nav-links a.active,
.fh-nav a.active,
.site-nav a.active {
  color: var(--lime, #c8d96f) !important;
}

/* Burger Button */
.fh-burger,
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.fh-burger span,
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .28s ease;
}

.fh-burger.open span:nth-child(1),
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fh-burger.open span:nth-child(2),
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.fh-burger.open span:nth-child(3),
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .nav-inner {
    position: relative;
  }

  .fh-burger,
  .menu-toggle {
    display: flex !important;
  }

  .nav-cta {
    display: none !important;
  }

  .fh-nav,
  .nav-links.fh-nav,
  .nav-links {
    position: fixed !important;
    top: 0;
    right: -100%;
    left: auto;
    width: 280px;
    height: 100vh;
    background: #0f1f17;
    padding: 110px 28px 40px;
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.18);
    z-index: 10000;
  }

  .fh-nav.open,
  .nav-links.fh-nav.open,
  .nav-links.open {
    right: 0;
  }

  .fh-nav a,
  .nav-links.fh-nav a,
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .fh-nav a:last-child,
  .nav-links a:last-child {
    border-bottom: 0;
  }
}
