body {
  font-family: 'Segoe UI', sans-serif;
}

/* ROTATION */
.model-container {
  perspective: 1000px;
}

.rotate-on-hover {
  transition: transform 1s;
  width: 100%;
  max-width: 400px;
  transform-style: preserve-3d;
  border-radius: 10px;
  display: inline-block;
}

.rotate-on-hover:hover {
  transform: rotateY(180deg);
}

/* GALLERY */
.gallery-img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rotate-on-hover {
    max-width: 100%;
  }

  .gallery-img {
    width: 80px;
    height: 60px;
  }

  h2, h4, h5, h6 {
    text-align: center;
  }
}
