/* ============================================
   ABOUT US PAGE STYLES — about.css
   Requires theme.css to be loaded first.
   ============================================ */

/* ── Page-level section spacing ── */
.about-page section {
  padding-block: var(--section-gap);
}

/* ── Section headings (40px crimson) ── */
.about-heading {
  font-family: var(--font-body);
  font-size: clamp(23px, 3.5vw, 35px);
  font-weight: 600;
  color: var(--color-crimson);
  line-height: 1.5;
  margin-bottom: 32px;
}

/* ════════════════════════════════════
   HERO  (shared with index; identical)
════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: clamp(480px, 55vw, 713px);
  overflow: hidden;
  background: #1a0505;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(180, 60, 0, 0.30) 0%,
    rgba(20, 5, 5, 0.55) 100%
  );
}

.hero__content {
  position: absolute;
  bottom: clamp(40px, 8%, 100px);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 980px;
  text-align: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.21;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.50);
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   ABOUT INTRO  (2-col: image + text)
════════════════════════════════════ */
.about-intro {
  border-bottom: 1px solid var(--color-border);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 444px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.about-intro__image {
  width: 100%;
  max-width: 444px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

.about-intro__text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.about-intro__text p + p {
  margin-top: 20px;
}

/* ════════════════════════════════════
   VISION & MISSION  (outlined box)
════════════════════════════════════ */
.vision-mission-wrapper {
  margin-inline: var(--gutter);
  max-width: calc(var(--max-width) - (var(--gutter) * 2));
  margin-inline: auto;
}

/* Vision section */
.vision-section {
  padding: clamp(40px, 5vw, 80px) var(--gutter);
}

.vision-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.vision-intro {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  margin-bottom: 16px;
}

.vision-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vision-list li {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  text-align: justify;
}

/* Mission section */
.mission-section {
  padding: clamp(40px, 5vw, 80px) var(--gutter);
}

.mission-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.mission-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  text-align: justify;
}

.mission-text p + p {
  margin-top: 20px;
}

/* ════════════════════════════════════
   PARTNER ORGANIZATIONS
════════════════════════════════════ */
.partners-section {
  padding-block: var(--section-gap);
}

.partners-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 8px;
}

.partner-logo {
  width: auto;
  object-fit: contain;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  border-radius: 4px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.partner-logo:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Uniform partner logo height */
.partner-logo { height: 160px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero {
    height: 70vw;
    min-height: 320px;
  }

  .hero__headline {
    font-size: clamp(28px, 8vw, 42px);
  }
}

@media (max-width: 900px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
  }

  .about-intro__image {
    max-width: 360px;
    margin-inline: auto;
  }

  .vision-mission-wrapper {
    margin-inline: var(--gutter);
  }

  .partners-grid {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .partner-logo {
    height: 100px;
  }
}
