/* Shared glass chrome for the BPME redesign (landing hero + Glas-Atlas map).
   Tokens from design_handoff_bpme/README.md — glass recipe, radii, shadows. */

.glass-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 66px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(11, 36, 71, 0.16);
}
.glass-header .brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.glass-header .brand img {
  height: 38px;
  width: auto;
  display: block;
}

.glass-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.glass-nav a {
  color: #556375;
  text-decoration: none;
  transition: color 120ms ease;
}
.glass-nav a:hover {
  color: #0057a3;
}

/* Segmented centre nav (logged-in map screen) */
.glass-seg-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.glass-seg-nav a {
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #556375;
  text-decoration: none;
  white-space: nowrap;
}
.glass-seg-nav a:hover {
  color: #0057a3;
}
.glass-seg-nav a.active {
  font-weight: 700;
  color: #0057a3;
  background: rgba(0, 87, 163, 0.1);
}

.glass-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.glass-actions .dropdown {
  position: relative;
}
.glass-actions .lang-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1px solid #c7d8e5;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0b2447;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: inherit;
}
.glass-actions .lang-chip svg {
  width: 14px;
  height: 14px;
}

.btn-bpme-primary {
  padding: 10px 20px;
  background: #0057a3;
  color: #ffffff;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 120ms ease;
}
.btn-bpme-primary:hover {
  background: #004a8c;
  color: #ffffff;
}

.glass-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0057a3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

@media (max-width: 900px) {
  .glass-nav {
    display: none;
  }
  .glass-seg-nav {
    display: none;
  }
}
