/* === Waves 1.0 — Nav + Dropdown styling for Holocron Entries === */

/* Top-level nav links */
.navbar-nav .nav-link {
  font-size: calc(1rem + 2px);
  font-weight: 600;
  padding: 0.65rem 1rem;
  line-height: 1.4;
  color: #fff !important;         /* white text by default */
  transition: color .2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #c69c6d !important;      /* gold/bronze hover */
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  font-size: calc(1rem + 2px);
  padding: 0.6rem 1.25rem;
  line-height: 1.5;
  color: #fff !important;         /* white default */
  background-color: #000 !important;  /* black background */
  transition: color .2s ease, background-color .2s ease;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #c69c6d !important;      /* gold/bronze hover */
  background-color: #111 !important; /* subtle dark hover bg */
}
