/* ============================================================
   about.css — About page ONLY
   style.css must be loaded before this file.
   Contains: Hero banner, History, Visionary, VMG grid.
   Navigation, CTA Card, Footer → style.css only.
   ============================================================ */

/* ── HERO BANNER ────────────────────────────────────────── */
.ab-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/about-bg.png') center/cover no-repeat;
}

.ab-hero-overlay {
   position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.ab-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

/* ── HISTORY ────────────────────────────────────────────── */
.ab-history {
  background: linear-gradient(180deg, #F2EBD9 0%, #FFFFFF 100%);
}

.ab-history-inner {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.ab-history-text {
  font-size: 20px;
  color: #444444;
  line-height: 1.7;
  font-weight: 400;
}

/* ── NUMBERS ────────────────────────────────────────────── */
/* Reuses .stats-grid and .stat-card from style.css */
.ab-numbers {
  background: #ffffff;
}

/* ── MEET VISIONARY ─────────────────────────────────────── */
.ab-visionary {
  background: #ffffff;
}

.ab-visionary-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.ab-visionary-text {
  font-size: 20px;
  color: #444444;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.ab-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.ab-founder-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e2d9c8;
}

.ab-founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ab-founder-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 24px;
  margin-top: .4rem;
}

.ab-founder-role {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
  line-height: 24px;
}

/* ── VISION / MISSION / GOALS ───────────────────────────── */
.ab-vmg {
  background: #ffffff;
  padding-bottom: 5rem;
}

.vmg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.vmg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}

.vmg-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vmg-icon--blue   { background: #e8f4fd; color: #2196f3; }
.vmg-icon--gold   { background: #fdf3e0; color: #9B7C2E; }
.vmg-icon--purple { background: #f0eafd; color: #7b3fb5; }

.vmg-card h3 {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 24px;
}

.vmg-card p {
  font-size: 20px;
  color: #444444;
  line-height: 1.65;
  font-weight: 400;
}

/* ── RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 900px) {
  .vmg-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ── RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 640px) {
  .ab-hero         { height: 200px; }
  .ab-hero-title   { font-size: 28px; }
  .vmg-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .ab-founder-img  { width: 110px; height: 110px; }
}
