/* ── Shared navigation styles ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

.menu-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 209, 108, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#mobile-menu {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#mobile-menu.hidden {
  display: none;
}

a.nav-active,
a.nav-active:hover {
  color: #ffd16c !important;
}

a.nav-active.mobile-nav-link {
  color: #ffd16c !important;
}
