/* ================= Plane Section ================= */
.plane-section {
  position: relative;
  padding: 80px 20px;
  min-height: 400px;
  text-align: center;
  overflow: hidden;
  background: none;
  font-family: "Poppins", sans-serif;
  color: #000;
}

.plane {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-15deg);
}

/* ================= Interactive Logo ================= */
#interactive-logo {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  perspective: 1200px;
  background: none;
}

#interactive-logo .logo {
  width: 350px;
  transition: transform 0.1s ease-out;
  cursor: pointer;
}

/* ================= Nefertiti Section ================= */
.nefertiti-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("https://trans.trvar.com/wp-content/uploads/2025/11/2151297241.webp")
              center / cover no-repeat;
  overflow: hidden;
  border-radius: 30% 15%;
  perspective: 1200px;
}

.nefertiti {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  cursor: pointer;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
}
