/* MainHeader — sticky-less frosted-glass nav bar. */

/* frosted-glass header, per DESIGN "soft frost effect when scrolling".
   (Was briefly solid Deep Forest #1A3326 — reverted back to this. Also
   briefly tried OccasionsStrip's green-white tint here — didn't read
   well against the rest of the page, reverted back to this too.) */
.site-header {
  background-color: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-link {
  position: relative;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: #2D5A43;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: #1a1c1a;
  font-weight: 500;
}
.nav-link.active::after {
  width: 100%;
}
