/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  background: url("../img/about-hero.jpg") center/cover no-repeat;
  padding-bottom: 242px;
}

.hero-content h3 {
  font-family: "Montserrat", cursive;
  color: var(--brand-secondary);
  font-size: clamp(1rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-top: 0.4rem;
}

.hero-text p {
  justify-self: center;
  width: 52%;
}

/* =========================================================
   ABOUT SECTION — Compact Gradient
   ========================================================= */
.about-section {
  position: relative;
  background: linear-gradient(to bottom, #9E1F63 0%, #b98a54 70%, #c09c66 100%);
  color: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ✅ align slightly higher */
  text-align: center;

  /* ✅ Height and padding tuned to home section */
  min-height: 80vh;
  padding-bottom: 5rem;
}

.about-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: -2rem auto;
}
@media (max-width: 860px) {
  .about-section {
    overflow: visible;
    padding-bottom: 3rem;  /* helps avoid clipping below */
  }
}

/* =========================================================
   ABOUT LAYOUT
   ========================================================= */
.about-info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 0;
}

.about-text,
.about-bio {
  max-width: 580px;
  text-align: left;
  margin: 0;
}

.about-me {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
}

.about-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   HEADERS + FANCY LETTERS
   ========================================================= */

/* Reiki header — elegant gold-brown */
.about-text h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--brand-secondary);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* About Me header — magenta first letter accent */
.about-bio h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--brand-primary);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

/* =========================================================
   MOBILE TWEAKS
   ========================================================= */
@media (max-width: 860px) {
  .about-section {
    padding: 1rem 1rem 1.25rem;
    min-height: auto;
  }

  .about-info {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }

  .about-text,
  .about-bio {
    text-align: center;
  }

  .about-photo img {
    width: 130px;
    height: 130px;
  }
}
