/* SceneMethod - Method & Archive */

/* Scene container */
.sceneMethod {
  position: relative;
  width: 100vw;
  min-height: 200vh;
  overflow: hidden;
  background-color: #000;
}

/* Video background - stays fixed */
.sceneMethod__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
}

.sceneMethod__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content wrapper - scrolls on top of background */
.sceneMethod__content {
  position: relative;
  z-index: 801;
  padding-top: 30vh;
  padding-bottom: 30vh;
}

/* Individual text block */
.sceneMethod__block {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Text box styling */
.sceneMethod__text {
  max-width: 700px;
  padding: 2rem 2.5rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.01em;
  
  /* Initial hidden state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state */
.sceneMethod__text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Exit state - drifts upward */
.sceneMethod__text.exit {
  opacity: 0;
  transform: translateY(-60px);
}

/* Hyperlink styling - subtle but interactive */
.sceneMethod__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.sceneMethod__link:hover {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .sceneMethod__text {
    font-size: 1.25rem;
    padding: 1.5rem 2rem;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .sceneMethod__text {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    max-width: 95%;
  }
}

