/* Nav dropdown hover/active color fix (uniform across site) */
:root{
  --bs-dropdown-link-hover-bg: transparent;
  --bs-dropdown-link-active-bg: transparent;
}
.navbar .dropdown-item{
  background: transparent !important;
  color: var(--gold) !important;
}
.navbar .dropdown-item.active,
.navbar .dropdown-item[aria-current="page"]{
  background: transparent !important;
  color: var(--gold) !important; /* active should remain gold */
  text-decoration: none !important;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus{
  background: transparent !important;
  color: #fff !important;
  text-decoration: underline !important;
}
