#about {
  padding: 6rem 2rem;
  min-height: 100vh;
  scroll-margin-top: 0;
  background-color: var(--bg);
  color: var(--text);
  text-align: center;
}

.about-container {
  max-width: 600px;
  margin: 0 auto;
}

#about h2 {
  font-size: 35.2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-intro {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
  line-height: 1.6;
}

/* ---------------------------- Name-Shine-Start ---------------------------- */
.name-shine {
  display: inline-block;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-size: 200% auto;
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  font-weight: 600;
  font-size: inherit;
  font-family: inherit;
}

@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

#about p {
  text-align: left;
  font-size: 16.8px;
  margin-bottom: 2.5rem;
  color: var(--accent);
  line-height: 1.6;
}
/* ----------------------------- Name-Shine-End ----------------------------- */



/* --------------------------- What-I-Build-Start --------------------------- */




/* ---------------------------- Tech-Stack-Start ---------------------------- */
.tech-stack {
  margin-bottom: 96px;
  margin-top: 96px;
  text-align: center;
}

.tech-stack h3 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  color: var(--accent-color);
}

.stack-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.icon-wrapper {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.icon-wrapper.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}



.icon-wrapper i {
  font-size: 2rem;
  color: var(--text-muted);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.icon-wrapper i:hover {
  opacity: 0.6;
  transform: scale(1.1) translateY(-2px);
  color: var(--accent-color);
}




.tooltip {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-tooltip, #222);
  color: var(--text-light, #fff);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.icon-wrapper:hover .tooltip {
  opacity: 1;
}
/* ----------------------------- Tech-Stack-End ----------------------------- */



/* ------------------------- Philosophy-Quote-Start ------------------------- */
.philosophy-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin: 2rem auto 1rem;
  max-width: 600px;
  line-height: 1.6;
}

.quote-author {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
}



.philosophy-quote::before,
.philosophy-quote::after {
  content: none;
}

/* -------------------------- Philosophy-Quote-End -------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Mobile — About                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  #about {
    padding: 4rem 1.25rem;
  }

  #about h2 {
    font-size: 1.8rem;
  }

  #about p {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .philosophy-quote {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .tech-stack {
    margin-top: 3rem;
    margin-bottom: 0;
  }

  .tech-stack h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .stack-icons {
    gap: 1.75rem;
  }

  .icon-wrapper i {
    font-size: 1.65rem;
  }

  /* Tooltips don't work well on touch — hide them */
  .tooltip {
    display: none;
  }
}

@media (max-width: 380px) {
  .stack-icons {
    gap: 1.25rem;
  }

  .icon-wrapper i {
    font-size: 1.5rem;
  }
}