/*******************************************************************************
 * Mega menü stílusai
 ******************************************************************************/

.njszt-mega-overlay {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.njszt-mega-overlay.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* Almenü linkek hover effektusa */
.drupal-menu-output ul li a {
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.drupal-menu-output ul li a:hover {
  color: #0056b3 !important;
  transform: translateX(4px);
  font-weight: 700 !important;
}

/* Főmenü linkek hover effektusa */
.drupal-menu-output h4 a:hover {
  color: #0056b3 !important;
}
