.top-bar {
  background: transparent;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px;
  font-family: "Syne", sans-serif;
  color: #ffffff;
}

.site-header-wrap {
  background-color: #10182a;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  z-index: 100;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.site-logo img {
  max-height: 44px;
  width: auto;
}

.primary-nav ul,
.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.primary-nav a,
.nav-menu a {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.primary-nav a:hover {
  color: #00d3f3;
}

.primary-nav .current-menu-item a {
  color: #00d3f3;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: #10182a;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-nav-close:hover {
  color: #00d3f3;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-overlay a {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover {
  color: #00d3f3;
}

.mobile-nav-overlay .current-menu-item a {
  color: #00d3f3;
}

@media (max-width: 1023px) {
  .top-bar {
    font-size: 10px;
    line-height: 1;
  }
  .site-header {
    padding: 16px 20px;
  }

  .primary-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
