/* navbar.css - Estilos modernos y profesionales para el menú de navegación */

.navbar {
  background-color: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(-20px);
}

.navbar.navbar-visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-right: 30px;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #25d366;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Estilo opcional para el selector de idioma */
#langDropdown {
  font-size: 1.2rem;
}

.dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive ajustes si es necesario */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
}
