/* File: assets/css/pages/about.css */

/* About Page (Full Page) */
.page-hero {
  padding: 60px 0;
  text-align: center;
  background-color: var(--bg-color);
}
.page-hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  text-shadow: 3px 3px 0 var(--secondary-color);
}
.page-hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 10px auto 0 auto;
}

.mission-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}
.mission-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.mission-text {
  flex: 1.2;
  text-align: left;
}
.mission-text .lead {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 20px;
}
.mission-image { flex: 1; }
.mission-image img {
  width: 100%;
  border-radius: 20px;
}

.founder-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  text-align: center;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.profile-card {
  background-color: var(--light-bg);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--light-bg);
  box-shadow: 0 0 0 3px var(--primary-color);
  margin-bottom: 20px;
}
.profile-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--font-color);
  margin-bottom: 5px;
}
.profile-card .profile-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}
.profile-card .profile-bio {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.founder-section .wavy-divider { transform: rotate(360deg); }
.page-hero .wavy-divider .shape-fill { fill: var(--light-bg); }
.founder-section .wavy-divider .shape-fill { fill: var(--light-bg); }

/* Responsiveness */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column-reverse;
  }
  .mission-text { text-align: center; }
  .page-hero h1 { font-size: 2.5rem; }
}
