@import url("home.css");

/* ABOUT PAGE EXTRAS (colorful + animated) */

.about-hero {
  max-width: 1120px;
  margin: 2.5rem auto 1.5rem;
  padding: 0 1.1rem;
  text-align: center;
  animation: fadeUp 0.7s ease-out both;
}

.about-hero h1 {
  margin-bottom: 0.4rem;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.about-hero p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-content {
  max-width: 1120px;
  margin: 0 auto 3rem;
  padding: 0 1.1rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

/* Main text box */
.about-content .text {
  background: #fff;
  padding: 1.9rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s ease-out both;
}

/* Headings with color strip */
.about-content .text h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  border-left: 5px solid var(--primary);
  padding-left: 0.6rem;
}

/* Cute pill bullets */
.about-content .text ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
}

.about-content .text ul li {
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  margin-bottom: 0.4rem;
  background: #e7f9ee;
  border-left: 4px solid var(--primary);
  font-size: 0.9rem;
}

/* Photo grid */
.about-content .photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.about-content .photos img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  animation: fadeInScale 0.7s ease-out both;
}

/* Stagger images */
.about-content .photos img:nth-child(1) {
  animation-delay: 0.1s;
}
.about-content .photos img:nth-child(2) {
  animation-delay: 0.2s;
}
.about-content .photos img:nth-child(3) {
  animation-delay: 0.3s;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
