/* ══ About Page — Harborside-inspired ══ */

/* Hero */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}
@media (max-width: 640px) {
  .about-hero { border-radius: 0 0 24px 24px; }
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 30, 0.6);
}
.about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 800px;
}
.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.about-hero__title {
  font-family: var(--hj-font);
  font-size: var(--hj-size-h1);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.about-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-hero__btn {
  padding: 0.65rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.about-hero__btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.about-hero__btn--primary {
  background: var(--hj-cta);
  color: #fff;
  border-color: var(--hj-cta);
}
.about-hero__btn--primary:hover {
  background: var(--hj-cta-dark);
  border-color: var(--hj-cta-dark);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 115, 168, 0.45);
  transform: translateY(-2px);
}
.about-hero__btn--primary:active {
  background: #003f5e;
  border-color: #003f5e;
  color: #fff;
  box-shadow: none;
  transform: scale(0.97);
}

/* Section Labels */
.about-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0073ab;
  margin-bottom: 1rem;
}
.about-section-heading {
  font-family: var(--hj-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--hj-heading, #1a1a2e);
}
.about-section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* Image Grid */
.about-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 450px;
}
.about-image-grid__item {
  border-radius: 12px;
  overflow: hidden;
}
.about-image-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-grid__item--large {
  grid-row: 1 / 3;
}
.about-image-grid--reverse {
  grid-template-columns: 1fr 1.2fr;
}
.about-image-grid--reverse .about-image-grid__item--large {
  grid-column: 2;
  grid-row: 1 / 3;
}
@media (max-width: 768px) {
  .about-image-grid {
    height: 300px;
  }
}

/* Mission & Vision sections */
.about-mission {
  background: #fff;
}
.about-vision {
  background: #fafbfc;
}

/* Pastor */
.about-pastor {
  background: #fff;
}
.about-pastor__photo-wrap {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-pastor__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-pastor__photo-wrap {
    width: 200px;
    height: 200px;
  }
}

/* Beliefs Tabs */
.about-beliefs__tabs .nav-link {
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  color: #555;
  border: 1px solid #ddd;
  margin: 0.25rem;
}
.about-beliefs__tabs .nav-link.active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.about-beliefs__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Staff */
.staff-card {
  padding: 1.5rem;
}
.staff-photo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #adb5bd;
}
.staff-name {
  font-weight: 600;
}

/* Location */
.location-info {
  background: #fff;
  border-radius: 12px;
}
.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.location-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f5ff;
  border-radius: 50%;
  color: #0073ab;
}
.location-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}
.location-value {
  font-size: 1rem;
  color: #333;
}
