/* Positionnement cube */
.scene {
  width: 200px;
  height: 200px;
  margin: 100px auto;
  perspective: 800px;
}
.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.face {
  position: absolute;
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  cursor: pointer;
}

/* Faces avec image de fond */
.face.front  { transform: rotateY(  0deg) translateZ(100px); background-image: url('/HandiFunWorld/style/img/partenaires/logo_crazy.jpg'); }
.face.back   { transform: rotateY(180deg) translateZ(100px); background-image: url('/HandiFunWorld/style/img/partenaires/logo_dragaura.png'); }
.face.left   { transform: rotateY(-90deg) translateZ(100px); background-image: url('/HandiFunWorld/style/img/partenaires/logo_elixirs.jpg'); }
.face.right  { transform: rotateY( 90deg) translateZ(100px); background-image: url('/HandiFunWorld/style/img/partenaires/logo_heavijio.jpg'); }
.face.top    { transform: rotateX( 90deg) translateZ(100px); background-color: #222; }
.face.bottom { transform: rotateX(-90deg) translateZ(100px); background-image: url('/HandiFunWorld/style/img/partenaires/logo_pandemonium.png'); }

.popup {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* fond foncé */
  justify-content: center;
  align-items: center;
}

.popup-content {
  width: 550px; /* largeur fixe */
  height: 700px; /* hauteur adaptée au portrait */
  background-size: contain; /* optionnel : 'contain' garde le ratio sans crop */
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  box-shadow: 0 0 20px #000;
  position: relative;
}


/* Bouton de fermeture */
.popup .close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 11;
}

/* Styles pour chaque face */
.popup.front .popup-content {
  background-image: url('/HandiFunWorld/style/img/partenaires/crazy.jpg');
}
.popup.back .popup-content {
  background-image: url('/HandiFunWorld/style/img/partenaires/dragaura.jpg');
}
.popup.left .popup-content {
  background-image: url('/HandiFunWorld/style/img/partenaires/elixir.jpg');
}
.popup.right .popup-content {
  background-image: url('/HandiFunWorld/style/img/partenaires/heavijio.jpg');
}
.popup.bottom .popup-content {
  background-image: url('/HandiFunWorld/style/img/partenaires/pandemonium.jpg');
}
.popup.top .popup-content {
  background-color: #000; /* temporaire */
}
