/* =============================
   ABOUT SECTION
   ============================= */

#about {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap — images butt up against each other */
  width: 100%;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;

  /* Animation starting state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Triggered by JS when image enters viewport */
.about-img.visible {
  opacity: 1;
  transform: translateY(0);
}