.canvas-section {
  position: relative;
}

.canvas-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

canvas {
  width: 100%;
  max-width: 2100px;
  height: auto;
  display: block;
}

.header {
  position: fixed;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.header.active {
  opacity: 1;
}

.parallax-sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ECE81A;

}

.parallax-copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #8C8C8E;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .header {
    top: 20%;
  }
  canvas#canvas {
    position: relative;
    transform: translateY(25%);
  }
}