/* ============================================
   ABOUT ME — Zoom Sequence
   ============================================ */
.about-section {
  position: relative;
  width: 100vw;
  height: 100vh; /* Fixed height for pinning */
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0;
  z-index: 1;
}

.about-giant-text {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: clamp(80px, 15vw, 200px);
  color: var(--black);
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
  line-height: 1;
  /* Ensure it centers properly when scaling */
  transform-origin: center center;
}

.about-info-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding: 0 5vw;
  opacity: 0; /* Hidden initially */
  pointer-events: none; /* Ignore clicks until visible */
}

.about-info-text {
  font-family: sans-serif;
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-giant-text {
    font-size: clamp(60px, 20vw, 120px);
  }
  .about-info-text {
    font-size: clamp(16px, 4.5vw, 24px);
    line-height: 1.4;
  }
}
