/* ==========================================================================
   Maniro — About Page / Hero
   Full-bleed photo hero with dark overlay and centered title/text on top.
   ========================================================================== */

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding-block: 56px;
  background-image: url("../../../assets/images/hero/about-hero-sunset.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so white text stays readable over any part of the photo */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 20, 0.72) 0%,
    rgba(10, 14, 20, 0.55) 45%,
    rgba(10, 14, 20, 0.78) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: block;
  text-align: center;
  margin: 0 0 28px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb-sep {
  margin-inline: 8px;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* ---------- Header text ---------- */
.about-hero-header {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.about-hero-title {
  margin: 0 0 20px;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: normal;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.about-hero-text {
  max-width: 520px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .about-hero {
    min-height: 380px;
    padding-block: 40px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 320px;
  }

  .breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .about-hero-text {
    font-size: 15.5px;
  }
}
