.vok-topbar {
  background: var(--vok-green);
  color: var(--vok-bg);
  padding: 10px 0;
  text-align: center;
}

.vok-topbar p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vok-header {
  background: var(--vok-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 50;
}

.vok-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.vok-header__logo {
  display: inline-flex;
  align-items: center;
}

.vok-header__logo img {
  max-height: 49px;
  width: auto;
}

.vok-header__nav .vok-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}

.vok-header__nav .vok-menu a {
  font-family: "Luckiest Guy", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vok-text-soft);
  transition: color 0.2s;
}

.vok-header__nav .vok-menu a:hover,
.vok-header__nav .vok-menu .current-menu-item a,
.vok-header__nav .vok-menu .current_page_item a {
  color: var(--vok-green);
}

.vok-header__hamburger {
  display: none;
  width: 36px;
  height: 28px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.vok-header__hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--vok-green);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.vok-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.vok-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.vok-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.vok-resizing .vok-header__nav,
.vok-resizing .vok-header__hamburger,
.vok-resizing .vok-header__hamburger span {
  transition: none !important;
}

.vok-header__close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  z-index: 95;
}

.vok-header__close:hover {
  background: var(--vok-green);
  color: var(--vok-bg);
  border-color: var(--vok-green);
}

@media (max-width: 900px) {
  .vok-header__hamburger {
    display: flex;
  }

  .vok-header__close {
    display: inline-flex;
  }

  .vok-header__nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 20, 27, 0.98);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
  }

  .vok-header__nav.is-open {
    transform: translateX(0);
  }

  .vok-header__nav .vok-menu {
    flex-direction: column;
    gap: 32px;
  }

  .vok-header__nav .vok-menu a {
    font-size: 22px;
  }
}
