/* ======================================
   ABOUT PAGE STYLES + FADE ANIMATIONS
   File: public/css/about.css
   ====================================== */

.about-page {
  background-color: #f9fafb;
  min-height: 100vh;
  padding: 4rem 1rem;
  font-family: 'Inter', sans-serif;
}

/* ANIMATION SETUP */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.3s;
}

.fade-delay-2 {
  animation-delay: 0.6s;
}

.fade-delay-3 {
  animation-delay: 0.9s;
}

/* ABOUT CONTAINER */
.about-container {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeInUp 0.9s ease forwards;
}

.about-container h1 {
  font-size: 2rem;
  color: #047857;
  margin-bottom: 1rem;
}

.about-container p {
  color: #374151;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* MISSION SECTION */
.mission-section {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  background: #ecfdf5;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.vision-section {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.mission-section h2,.vision-section h2 {
  color: #065f46;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.mission-section p,.vision-section p {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* TEAM SECTION */
.team-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.team-section h2 {
  color: #065f46;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-member {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-member h3 {
  color: #047857;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.team-member p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .about-container, .mission-section, .vision-section {
    padding: 2rem;
  }
  .about-container h1,
  .mission-section h2,
  .vision-section h2,
  .team-section h2 {
    font-size: 1.5rem;
  }
}
