/* Survol des items du menu */
.navbar-item {
  transition: all 0.3s ease;
}

.navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.navbar-item:hover a span {
  color: #48c78e !important;
}

.navbar-item:hover .icon {
  color: #48c78e !important;
  transform: scale(1.2) rotate(15deg);
}

/* Animation de l'icône au survol */
.navbar-item a .icon {
  transition: all 0.3s ease;
}
