/* ══════════════════ HEADER ══════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
}

.header__strip { background: var(--black); }

.header__strip-inner {
  max-width: 1500px;
  margin-inline: auto;
  padding: 4px 10px;
}

.venues {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .7;
  font-size: 9.6px;
  color: #fff;
}

.venues li { position: relative; padding-right: 13px; }
.venues li:last-child { padding-right: 0; }

.venues li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border-radius: 100px;
  background: #fff;
  opacity: .6;
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 10px;
}

.header__logo img { width: 140px; height: auto; }

.header__nav { flex: 1; min-width: 0; }

.header__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 30px;
}

.header__nav a {
  display: block;
  padding: 10px 10px 12px;
  font-size: 10.4px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}

.header__nav a:hover { color: var(--pink); border-bottom-color: var(--pink); }

.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 140px;
  min-height: 37px;
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 11.2px;
  font-weight: 700;
  color: #fff;
  transition: filter .15s;
}

.btn:hover { filter: brightness(1.1); }
.btn img   { width: 18px; height: 18px; }
.btn--login  { background: var(--indigo); }
.btn--signup { background: var(--pink); }

.header__menu { display: flex; padding: 0; }
.header__menu img { width: 40px; height: 40px; }
