/* Page Home................................................................................. */
body {
  /* cursor: none; */
  background-color: #1b181d;
  height: 100vh;
}
#home {
  display: flex;
  justify-content: center;
  align-items: center;
}
#connect {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
}
#enter-button {
  display: flex;
  justify-content: center;
  width: 30%;
}

.enterbutton {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ref.btn {
  display: flex;
  justify-content: center;
  font-family: "Agdasima", sans-serif;
  font-weight: bold;
  font-size: 1.3em;
  text-transform: uppercase;
  border: none;
  background-color: transparent;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
}
.hr_home {
  border: 1px #b0b0b0 solid;
}

.ref:no-button {
  background-color: transparent;
}
a {
  text-decoration: none;
  color: #b0b0b0;
}
a:hover {
  text-decoration: none;
  color: #cfcfcf;
}
/* Masquer le curseur natif */

/* .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #edff4d;
  border-radius: 50%;
  pointer-events: none;
  animation: fadeOut 5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
} */
.btn-primary {
  color: #e3e3e3;
  background-color: transparent;
}
.btn-primary:hover {
  background-color: transparent;
}
.pops {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}
.flip {
  width: 100%;
}
/* /////////////////////////////////////////////////////////////////////////////////////////////// */

#flip-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh; /* Centre verticalement */
}
/* Conteneur principal de l'animation */
.flip-container {
  width: 100%; /* Largeur complète */
  height: 70vh; /* Hauteur de 70% de la vue */
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px; /* Perspective 3D */
  /* L'image à l'intérieur du conteneur ne va pas affecter sa taille */
}

/* L'élément qui subit le flip */
.wrap-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
  margin: auto;
  transform-style: preserve-3d; /* Pour le flip en 3D */
  transition: transform 3s ease-in-out; /* Transition douce */
  /* Ne pas toucher à la taille de l'image, garder son aspect */
}

/* Image dans la face avant */
.flip-front {
  width: auto;
  height: auto;
  backface-visibility: hidden; /* Cacher l'arrière de l'image lors du flip */
}

.flip-back {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(180deg) scaleY(-1); /* Retourner l'image de la face arrière */
  backface-visibility: hidden; /* Cacher l'arrière pendant l'animation */
}

/* Animation flip */
@keyframes flipAnimation {
  0% {
    transform: rotateX(0deg); /* Position initiale */
  }
  50% {
    transform: rotateX(180deg); /* Flip à 180 degrés */
  }
  100% {
    transform: rotateX(0deg); /* Retour à la position initiale */
  }
}

/* Classe pour démarrer l'animation de flip */
.flip-active {
  animation: flipAnimation 6s infinite; /* Flip toutes les 6 secondes, en boucle */
}

/* Popovers.......................................................................... */
.popover {
  background-color: #1b181d85;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.7); /* Ombre */
  opacity: 90%;
  padding: 10px;
  border: 2px solid #1b181d;
}
.popover .popover-body {
  text-align: center;
  font-family: "Agdasima", sans-serif;

  font-size: 1.3em;
  color: #b0b0b0;
  line-height: 21px;
}
.bs-popover-auto[data-popper-placement^="right"] .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="right"] .popover-arrow::after {
  border-right-color: #1b181d59 !important;
  background-color: #1b181d59 !important;
}
.popover .popover-arrow {
  filter: brightness(0.5); /* Ajuste la luminosité */
}
.footer-style a {
  text-decoration: none;
  color: #828282;
  font-weight: bold;
}
.footer-style {
  font-size: 0.8em;
}
p.footer-style {
  margin-bottom: 10px;
  color: #b0b0b0;
}
/* .border_separator {
  display: flex;
  justify-content: center;
  border-top: 1px solid #b0b0b0;
  width: 100%;
  padding-top: 10px;
} */
@media (max-width: 768px) {
  .ref.btn {
    display: flex;
    justify-content: center;
    font-family: "Agdasima", sans-serif;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
  }
  #enter-button {
    display: flex;
    justify-content: center;
    width: 25%;
  }
}
