.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  transform: scale(1.1);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out both;
}

.online-indicator {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 9999px;
}

.online-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 9999px;
  opacity: 0.5;
  animation: pulse 1.5s ease-out infinite;
  z-index: -1;
}

.separator {
  line-height: 0;       /* supprime l’espace fantôme */
  overflow: hidden;     /* évite tout débordement */
}

.separator svg {
  display: block;       /* empêche l’espace inline */
  width: 100%;          /* prend toute la largeur */
  height: auto;         /* garde la proportion */
}



.mountain-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.mountain-separator svg {
  display: block;
  width: 100%;
  height: 150px;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}