/* Custom Header Override - Loads AFTER Tilda CSS to ensure our styles win */

/* Dropdown title base state - locked to black */
.np-header__dropdown-title {
  color: #000000 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

/* Dropdown title hover - purple with underline */
.np-header__dropdown-title:hover {
  color: #5f59f0 !important;
  text-decoration: underline;
  transition: color 0.3s ease !important;
}

/* Ensure dropdown items also don't inherit Tilda colors */
.np-header__dropdown-item {
  display: block !important;
  padding: 10px 12px !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #000000 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.np-header__dropdown-item:hover {
  background-color: #f7f7fe !important;
  color: #5f59f0 !important;
}

.np-header__dropdown-subitem {
  display: block !important;
  padding: 8px 12px !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #000000 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.np-header__dropdown-subitem:hover {
  background-color: #f7f7fe !important;
  color: #5f59f0 !important;
}
