/* Shared Biskup6 navigation */
.nav-pill {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(820px, calc(100% - 32px));
  height: 66px;
  padding: 0 18px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.78) 54%, rgba(0,0,0,0.92) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 16px 40px rgba(0,0,0,0.24), 0 0 0 4px rgba(255,255,255,0.04), 0 1px 0 rgba(255,255,255,0.16) inset;
}
.nav-pill::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}
.nav-pill::after { content: none; }
.nav-pill > * { position: relative; z-index: 1; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img {
  width: auto;
  height: 38px;
  transform: translateY(-4px);
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.12));
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a::after { display: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 22px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: #ff172d;
  transform: translateY(-1px) scale(1.04);
  box-shadow: none;
}
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 34%), rgba(0,0,0,0.9);
  -webkit-backdrop-filter: blur(34px) saturate(150%);
  backdrop-filter: blur(34px) saturate(150%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  padding: 12px 24px;
  border-radius: 10px;
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  transition: color 0.15s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--red); }

@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-pill {
    width: min(820px, calc(100% - 32px));
    height: 56px;
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .nav-pill {
    top: 12px;
    width: calc(100% - 24px);
  }
}

