/* --------------------------------------
   ABOUT PAGE HERO — EXACT DESIGN MATCH
---------------------------------------*/

.about-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Strong dark overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
}

/* INLINE title + leaf icon */
.about-hero-inline {
  display: inline-flex;
  align-items: center;
  gap: 14px; /* spacing between text and leaf */
}

/* EXACT title style */
.about-hero-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

/* Leaf icon on the right */
.about-hero-leaf {
  height: 21px;
  width: auto;
  top: -15px;
  position: absolute;
  left: 105%;
}

/* Underline EXACT STYLE */
.about-hero-underline {
  width: 30px;
  height: 4px;
  background: #3ea02b;
  border-radius: 40px;
  margin: 10px 0 0;
}

.about-page-content {
  padding: 70px 0 90px;
  background: #ffffff;
}

.about-page-content p {
  font-size: 22px;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .about-page-content {
    padding: 50px 0 70px;
  }

}




/* =========================================
   ABOUT – 7-IMAGE COLLAGE (MATCHES DESIGN)
========================================= */

.about-gallery-section {
  margin: 0px 0 100px;
}

/* Desktop layout – 3 columns, 3 rows, 7 images */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-template-areas:
    "img1 img2 img3"
    "img4 img5 img3"
    "img4 img6 img7";
  gap: 22px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

/* Map each image to its area to reproduce the layout */
.about-img.img1 { grid-area: img1; }
.about-img.img2 { grid-area: img2; }
.about-img.img3 { grid-area: img3; } /* tall right image (2 rows) */
.about-img.img4 { grid-area: img4; } /* tall left image (2 rows) */
.about-img.img5 { grid-area: img5; }
.about-img.img6 { grid-area: img6; }
.about-img.img7 { grid-area: img7; }

/* Tablet – cleaner balanced grid */
@media (max-width: 992px) and (min-width: 769px) {
  .about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
    grid-template-areas:
      "img1 img2"
      "img3 img3"
      "img4 img5"
      "img6 img7";
  }

  .about-img.img3 {
    height: 100%;
  }
}

/* Mobile – clean simple vertical gallery */
@media (max-width: 768px) {
  .about-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img1"
      "img2"
      "img3"
      "img4"
      "img5"
      "img6"
      "img7";
    grid-auto-rows: 240px;
    gap: 18px;
  }

  .about-img {
    height: 240px !important;
    border-radius: 14px;
  }
}

.about-img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
