/* ── In-hero header (homepage pattern) ───────────────────────
   The homepage header is not a fixed bar. It sits inside the hero
   as its first child, transparent, and scrolls away with it. These
   values are taken from the homepage .hero__nav / .logo / .nav__*
   rules so every page reads as one product.
   Apply .bc-nav--in-hero and place the element inside the hero. */
.bc-nav--in-hero {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 52px 0;
  flex-shrink: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: 0;
}
.bc-nav--in-hero .bc-logo__blu {
  font-family: var(--font-s); font-size: 21px; font-weight: 500;
  color: var(--white); letter-spacing: -.01em;
}
.bc-nav--in-hero .bc-logo__cruise {
  font-family: var(--font-s); font-size: 21px; font-weight: 300;
  font-style: italic; color: var(--gold);
}
.bc-nav--in-hero .bc-nav__links { display: flex; align-items: center; gap: 2px; }
.bc-nav--in-hero .bc-nav__link {
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.58);
  padding: 6px 11px; border-radius: 6px; letter-spacing: .01em;
  transition: color .16s, background .16s;
}
.bc-nav--in-hero .bc-nav__link:hover,
.bc-nav--in-hero .bc-nav__link.is-active {
  color: var(--white); background: rgba(255,255,255,.08);
}
.bc-nav--in-hero .bc-nav__cta {
  margin-left: 6px; font-size: 12.5px; font-weight: 600; color: var(--white);
  background: var(--coral); padding: 8px 17px; border-radius: 6px;
  letter-spacing: .01em; transition: background .16s;
}
.bc-nav--in-hero .bc-nav__cta:hover { background: var(--coral-h); }
.bc-nav--in-hero .bc-nav__ham { display: none; color: var(--white); font-size: 22px; padding: 4px; }

@media (max-width: 960px) {
  .bc-nav--in-hero { padding: 24px 28px 0; }
  .bc-nav--in-hero .bc-nav__links { display: none; }
  .bc-nav--in-hero .bc-nav__ham { display: block; }
}

/* ════════════════════════════════════════════════════════════
   BluCruise Design System — navigation.css
   Desktop nav, mobile overlay, logo. Identical on every page.
   Requires: variables.css
════════════════════════════════════════════════════════════ */

/* ── Logo ───────────────────────────────────────────────────── */
.bc-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  flex-shrink: 0;
}

.bc-logo__blu {
  font-family: var(--font-s);
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.01em;
}

.bc-logo__cruise {
  font-family: var(--font-s);
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}

/* ── Desktop nav ────────────────────────────────────────────── */
.bc-nav {
  position: relative;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 52px 0;
  flex-shrink: 0;
}

/* Fixed variant (for content pages) */
/* ── Hero-aware header states (BC.nav.heroAware) ─────────────
   Over a hero the bar is transparent so the image is uninterrupted.
   A gentle top-down scrim keeps white links legible on bright
   photography without drawing a visible bar. On scroll, or on any
   page without a hero, the solid background returns. */
.bc-nav--fixed.bc-nav--over-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom-color: transparent;
}
.bc-nav--fixed.bc-nav--over-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,15,28,.55) 0%, rgba(6,15,28,.22) 55%, transparent 100%);
  transition: opacity var(--trans);
}
.bc-nav--fixed.is-solid {
  background: rgba(6,15,28,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.bc-nav--fixed.is-solid::before { opacity: 0; }
.bc-nav--fixed {
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}

.bc-nav--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(6,15,28,.92);
  /* overridden by .bc-nav--over-hero until scrolled */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  z-index: var(--z-nav);
}

.bc-nav--fixed + * {
  padding-top: 72px; /* push content below fixed nav */
}

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

.bc-nav__link {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.58);
  padding: 6px 11px;
  border-radius: var(--rad-sm);
  transition: color var(--trans), background var(--trans);
  letter-spacing: .01em;
}

.bc-nav__link:hover,
.bc-nav__link.is-active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.bc-nav__cta {
  margin-left: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  padding: 8px 17px;
  border-radius: var(--rad-sm);
  transition: background var(--trans);
  letter-spacing: .01em;
}

.bc-nav__cta:hover { background: var(--coral-h); }

.bc-nav__ham {
  display: none;
  color: var(--white);
  font-size: 22px;
  padding: 4px;
}

/* ── Mobile nav overlay ─────────────────────────────────────── */
.bc-mnav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: var(--z-modal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bc-mnav.open { display: flex; }

.bc-mnav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.bc-mnav__close:hover { background: rgba(255,255,255,.14); }

.bc-mnav__link {
  font-family: var(--font-s);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  padding: 12px 48px;
  width: 100%;
  text-align: center;
  transition: color var(--trans);
}

.bc-mnav__link:hover { color: var(--gold); }

.bc-mnav__cta {
  margin-top: 12px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--rad-sm);
  font-family: var(--font-n);
  font-size: 14px;
  font-weight: 600;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .bc-nav__links { display: none; }
  .bc-nav__ham   { display: block; }
  .bc-nav        { padding: 24px 28px 0; }
  .bc-nav--fixed { padding: 14px 28px; }
}
