/* ============================================================
   B•Chemistry — About Page Styles
   ============================================================ */

/* Override hero background image */
.hero-wrap--about {
  background-image: url('../images/aboutImage.png');
  background-position: center top;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-section {
  background-color: #ffffff;
  padding: 80px 24px 90px;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-title {
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #2E2E2E;
  text-align: center;
}

.about-body {
  font-family: 'Riviera Nights Trial', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #918b8b;
  line-height: 2.2;
  letter-spacing: 0.01em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fade-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .about-section {
    padding: 56px 20px 64px;
  }

  .about-body {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}
