/* ─────────────────────────────────────────────────────────────────────────
   Shared site navigation — unified dropdown nav applied to every Plugsurfing
   page. Dimensions/typography match the exported `.nav` so it sits on the
   black hero exactly as before; dropdown panels follow the design screenshots.
   Self-contained class names (`site-nav__*`) so it never collides with the
   per-page styles preserved in each page partial.
   ───────────────────────────────────────────────────────────────────────── */

.site-nav {
  padding: 24px;
  position: relative;
  z-index: 50;
}
.site-nav__bar {
  height: 48px;
  padding: 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo — white masked wordmark + bridge */
.site-nav__logo {
  width: 148px;
  height: 32px;
  display: flex;
  align-items: center;
}
.site-nav__logo-mark {
  width: 148px;
  height: 21px;
  background-color: rgb(247, 247, 247);
  -webkit-mask: url("/assets/logo-full-white.svg") no-repeat center / contain;
  mask: url("/assets/logo-full-white.svg") no-repeat center / contain;
}

/* Menu row */
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__group {
  position: relative;
  display: flex;
  align-items: center;
}

/* Top-level items (buttons + plain links share the look) */
.site-nav__item {
  height: 32px;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgb(199, 199, 199);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1.5px transparent;
  transition: color 0.12s ease, box-shadow 0.12s ease;
}
.site-nav__item:hover,
.site-nav__group:hover .site-nav__item,
.site-nav__group:focus-within .site-nav__item {
  color: rgb(255, 255, 255);
}
/* Purple focus/open ring per DESIGN.md (purple is the focus-ring colour) */
.site-nav__group:hover > .site-nav__item,
.site-nav__group:focus-within > .site-nav__item,
.site-nav__item:focus-visible {
  box-shadow: inset 0 0 0 1.5px rgb(93, 82, 223);
  outline: none;
}

.site-nav__chev {
  width: 8px;
  height: 5px;
  transition: transform 0.15s ease;
}
.site-nav__chev path {
  stroke: currentColor;
}
.site-nav__group:hover .site-nav__chev,
.site-nav__group:focus-within .site-nav__chev {
  transform: rotate(180deg);
}

/* Dropdown panels */
.site-nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 224px;
  background: rgb(28, 28, 28);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.site-nav__group:hover .site-nav__panel,
.site-nav__group:focus-within .site-nav__panel {
  display: block;
}
/* Bridge the 10px gap so the panel stays open while moving the cursor onto it */
.site-nav__panel::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.site-nav__link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Contact sales button */
.site-nav__cta {
  height: 32px;
  border-radius: 1000px;
  background-color: rgb(255, 255, 255);
  padding: 0 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgb(15, 15, 15);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  margin-left: 12px;
  white-space: nowrap;
}
.site-nav__cta:hover {
  background-color: rgb(199, 199, 199);
}
