/* Glass-style Navbar */
.glass-navbar {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Navbar Links */
.nav-link {
  position: relative;
  color: #f8f9fa !important;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: goldenrod;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Animation */
.animate-dropdown {
  animation: fadeInDown 0.3s ease both;
  border-radius: 12px;
  background-color: #1f1f1f;
}

.dropdown-item {
  color: #fff;
}

.dropdown-item:hover {
  background-color: #343a40;
  color: goldenrod;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .navbar-toggler {
    padding: 0.6rem;
  }
}