/* About Page Styles */

/* 2. Page Hero / Intro Banner */
.about-hero {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-bg);
  z-index: -1;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(-8vh);
}

/* 3. Our Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.story-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--border);
  padding-left: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-accent);
  border: 2px solid var(--bg);
  box-shadow: var(--shadow-glow);
}

.timeline-year {
  color: var(--purple-vivid);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

/* 4. Mission / Vision / Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--purple-soft);
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.value-card .icon-tile {
  margin-bottom: 1.5rem;
}

/* 6. Team / Leadership */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-mid);
  background: var(--purple-soft);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--purple-light);
  border: 2px solid var(--border);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--fg);
}

.team-role {
  color: var(--purple-vivid);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-socials a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.team-socials a:hover {
  color: var(--purple-accent);
}

/* 9. Certifications / Awards / Partnerships */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.award-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.award-card:hover {
  border-color: var(--border-bright);
}

.award-icon {
  color: var(--purple-accent);
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
}

.award-title {
  font-weight: 500;
  color: var(--fg);
  font-size: 1.1rem;
}

.award-org {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
