  #travelMap {
    width: 100%;
    height: 600px;
    border-radius: 12px;
  }
/* DESKTOP NAV LINK HOVER / AKTÍV */
.nav-link {
  transition: all 0.25s ease;
}

.nav-link:hover {
  background-color: #1f2937; /* gray-800 */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-link.active {
  background-color: #1f2937;
  color: #ffffff;
}

/* MOBILE MENU ANIM */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slideDown { animation: slideDown 0.25s ease-out; }

/* Hover animáció: szöveg kicsit feljön, színváltozás, alsó vonal nő */
.nav-link {
  overflow: hidden;
}

.nav-link span:first-child {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link span:last-child {
  width: 0;
}

.nav-link:hover span:first-child {
  transform: translateY(-3px);
  color: #f43f5e; /* pink/red szín kiemelés */
}

.nav-link:hover span:last-child {
  width: 100%;
  background-color: #22d3ee; /* kontrasztos türkiz vonal */
}

/* Aktív menüpont */
.nav-link.active span:first-child {
  font-weight: 600;
  color: #22d3ee;
}

.nav-link.active span:last-child {
  width: 100%;
  background-color: #22d3ee;
}
  @keyframes slideDown { 
    from { opacity: 0; transform: translateY(-10px);} 
    to { opacity: 1; transform: translateY(0);} 
  }
  .animate-slideDown { animation: slideDown 0.25s ease-out; }