/* Header-specific styling for Hungarian Poker Lounge */

.hp-header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Logo styling */
.hp-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-900);
}

.hp-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ff8a5c, var(--color-primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.hp-logo-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Mobile toggle */
.nav-toggle {
  position: relative;
  background-color: #ffffff;
  flex-direction: column;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-gray-900);
  transition: transform var(--duration-base) ease-out, opacity var(--duration-base) ease-out, top var(--duration-base) ease-out, bottom var(--duration-base) ease-out;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

.nav-toggle.is-active .nav-toggle-bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile nav overrides */
.nav-mobile {
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-mobile-list {
  list-style: none;
}

.nav-mobile-link {
  display: block;
  padding-block: 0.3rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.nav-mobile-link:last-child {
  border-bottom: none;
}

/* Active link helper class for server-side usage */
.nav-link--active,
.nav-mobile-link--active {
  color: var(--color-primary-strong);
}

/* Reduce clutter on smaller viewports */
@media (max-width: 991.98px) {
  .hp-logo-text {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .site-header-inner {
    gap: 0.5rem;
  }

  .hp-logo-mark {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}
