/* ═══════════════════════════════════════════════════════════
   ABOUT.CSS — Styles for the about page only
   ═══════════════════════════════════════════════════════════ */

/* ── ABOUT SECTION ─────────────────────────────────────── */
#about {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 60px;
  text-align: center;
}

.about-heading {
  font-size: clamp(64px, 8vw, 110px);
  clip-path: inset(0 0% 0 0);
}

.about-body {
  max-width: 580px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin: 32px auto 48px;
  font-family: 'Space Mono', monospace;
}

/* Corner emoji icons */
.corner-icon {
  position: absolute;
  width: 120px;
  height: 120px;
  animation: float 4s ease-in-out infinite;
  will-change: transform;
}

.icon-tl {
  top: 80px;
  left: 80px;
  animation-delay: -1s;
}

.icon-tr {
  top: 80px;
  right: 80px;
  animation-delay: -2s;
}

.icon-bl {
  bottom: 80px;
  left: 80px;
  animation-delay: -3s;
}

.icon-br {
  bottom: 80px;
  right: 80px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — about page
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #about {
    padding: 100px 24px;
  }

  .corner-icon {
    display: none;
  }
}
