.topBar {
  height: 36px;
  background-color: var(--dark-2);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245, 192, 0, 0.2);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

.topBarContainer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topBarSocials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topBarSocialLink {
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 14px;
}

.topBarSocialLink:hover {
  color: var(--yellow);
}

.header {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.isSticky {
  position: fixed;
  top: 0;
  background-color: rgba(20, 20, 18, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 192, 0, 0.15);
}

.headerContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerLogo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1002; /* Above mobile nav */
}

.headerLogoMark {
  width: 24px;
  height: 24px;
  background-color: var(--yellow);
  display: inline-block;
}

.headerLogoText {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 1px;
}

.headerLogoText span {
  color: var(--yellow);
}

.headerNav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navLink {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
  display: inline-block;
}

.navLink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--yellow);
  transition: width 0.3s ease;
}

.navLink:hover, .navLink.active {
  color: var(--yellow);
}

.navLink.active::after, .navLink:hover::after {
  width: 100%;
}

.navCta {
  background-color: var(--yellow);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navCta:hover {
  background-color: var(--yellow-hover);
}

.mobileMenuBtn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002; /* Above mobile overlay */
}

.mobileMenuBtn span {
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobileMenuBtn.isActive span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobileMenuBtn.isActive span:nth-child(2) {
  opacity: 0;
}

.mobileMenuBtn.isActive span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobileNavOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--dark);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobileNavOverlay.isActive {
  opacity: 1;
  pointer-events: auto;
}

.mobileNavLink {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.mobileNavLink:hover {
  color: var(--yellow);
}
