/* ═══════════════════════════════════════════════
   about.css — About page styles
═══════════════════════════════════════════════ */

/* ── MISSION VISION ── */
.mission-section { background: white; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.mv-card.mission { background: var(--primary); }
.mv-card.vision  { background: var(--bg); border: 2px solid var(--sky-mid); }

.mv-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mv-card.mission h3 { color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.mv-card.mission p  { color: rgba(255,255,255,0.8); font-size: 0.925rem; line-height: 1.75; }

.mv-card.vision h3 { color: var(--primary); font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.mv-card.vision p  { color: var(--text-muted); font-size: 0.925rem; line-height: 1.75; }

/* ── TEAM ── */
.team-section { background: var(--bg); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

.team-info { padding: 1.5rem 1.25rem; }
.team-info h4 { font-family: 'Poppins', sans-serif; color: var(--primary); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-info .role { color: var(--gold-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.6rem; }
.team-info p { color: var(--text-muted); font-size: 0.825rem; line-height: 1.55; }

/* ── HISTORY TIMELINE ── */
.history-section { background: white; }

.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--sky-mid));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-item p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; max-width: 560px; }

@media (max-width: 768px) {
  .mv-grid   { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
