/* === Flip-Logo-Stil === */

.flip-wrapper {
  width: 8rem;
  height: 8rem;
  perspective: 1000px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 9999px;
}

.flip-front {
  z-index: 2;
  transform: rotateY(0deg);
}

.flip-back {
  background-color: transparent;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-back img {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.rotate-y-180 {
  transform: rotateY(180deg);
}
