/* ============================================
   LATE CULTURE — Page Navigation
   Sub-page fixed nav + mobile responsive
   ============================================ */

/* ── Page Nav (for sub-pages, sticky white bar) ── */
.page-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--separator);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(2);
  backdrop-filter: blur(var(--glass-blur)) saturate(2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.page-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.page-nav .nav__wordmark {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.page-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.page-nav__link {
  position: relative;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.page-nav__link:hover {
  color: var(--ink);
}

/* Underline grows from center on hover */
.page-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rose3);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
  border-radius: 1px;
}

.page-nav__link:hover::after {
  width: 60%;
  left: 20%;
}

.page-nav__link--active {
  color: var(--ink);
  font-weight: 500;
}

.page-nav__link--active::after {
  width: 60%;
  left: 20%;
}

/* ── Hamburger (mobile) ── */
.page-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.page-nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── City Dropdown ── */
.city-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  padding: 8px;
  background: var(--ink);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 200;
}

.nav__wordmark-wrap:hover .city-dropdown {
  display: block;
}

.city-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 400;
  transition: background 0.2s;
}

.city-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.city-dropdown__item--active {
  color: var(--white);
}

.city-dropdown__item--soon {
  cursor: default;
  opacity: 0.6;
}

.city-dropdown__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.city-dropdown__badge {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
}

.city-arrow {
  transition: transform 0.3s;
}

.nav__wordmark-wrap:hover .city-arrow {
  transform: rotate(180deg);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  text-align: center;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__link {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu__link:hover {
  color: var(--rose3);
}

/* ── Mobile responsive nav ── */
@media (max-width: 768px) {
  .page-nav__links {
    display: none;
  }

  .page-nav__hamburger {
    display: flex;
  }

  .page-nav {
    padding: 0 16px;
  }
}
