/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans";
  background-color: #050505;
  color: #fff;
  overflow-x: hidden;
  height: 300vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 1;
}

header img {
  width: 150px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  font-size: 16px;
  cursor: pointer;
  font-family: "Noto Sans";
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100vh;
  text-align: center;
}

.hero h1 {
  font-size: 150px;
  font-style: normal;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  font-family: "Tourney";
}

/* .hero h1::after {
    content: 'BEST IN CLASS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
} */

.scroll-down {
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down img {
  width: 20px;
  margin-top: 10px;
  animation: bounce 1.5s infinite;
}

.scroll-down span {
  font-size: 12px;
  font-family: "Noto Sans";
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Performance Section */
.performance-section {
  display: flex;
  justify-content: space-between;
  padding: 50px 200px;
  gap: 20px;
  height: 100vh;
  text-align: left;
  background-color: #050505;
  align-items: center;
}

.performance-text {
  max-width: 50%;
}

.performance-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.performance-text p {
  font-size: 16px;
  line-height: 1.5;
}

.performance-stats {
  text-align: right;
  max-width: 50%;
}

.performance-stats p {
  font-size: 20px;
  margin-bottom: 10px;
}

.performance-stats p strong {
  font-size: 24px;
  display: block;
}

/* Configure Section */

.blank-configure-section {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 50vh;
  background-color: #050505;
  padding-bottom: 5rem;
}
.configuratorUI {
  display: none;
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  pointer-events: none;
  z-index: 0;
}
.configure-section {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 50vh;
  background-color: #050505;
  padding-bottom: 5rem;
}

.configure-btn {
  padding: 10px 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.configure-btn:hover {
  background: #fff;
  color: #000;
}

.configurator-right-panel {
  top: 40px;
  right: 0%;
  position: fixed;
  width: 10%;
  height: 100%;
  left: 90%;
}

.button-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  gap: 15px; /* Space between buttons */
}

.circle-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s;
}

.circle-button:hover {
  background-color: #2980b9;
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 60px;
  }

  header {
    flex-direction: column;
    gap: 10px;
  }

  .performance-section {
    flex-direction: column;
    text-align: center;
  }

  .performance-text,
  .performance-stats {
    max-width: 100%;
  }
}

#container3D {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none; /* Allows scrolling without blocking */
  overflow: hidden;
}

.pin-spacer {
  display: none !important;
}
