/* About Page Styles */

/* Hero Section */
.about-hero {
  background: url('images/about-hero.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
}

/* About Intro */
.about-intro {
  padding: 80px 60px;
  text-align: center;
  background: #f9f9f9;
}

.about-intro h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2c3e50;
}

.about-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Mission Section */
.about-mission {
  padding: 80px 20px;
  background: #fff;
}

.about-mission .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: bold;
}

.mission-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-card {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 15px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.mission-card h3 {
  margin-bottom: 15px;
  color: #1e90ff;
  font-size: 1.4rem;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}


/* Team Section */
.team {
  background: #f9f9f9;
  padding: 80px 60px;
  text-align: center;
}

.team h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #23393D;
  position: relative;
}

.team h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f1c40f;
  margin: 15px auto 0;
  border-radius: 2px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #f1c40f;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #23393D;
}

.team-member p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.team-member .social-links a {
  margin: 0 8px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.team-member .social-links a:hover {
  color: #f1c40f;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about-mission {
    flex-direction: column;
    padding: 40px 20px;
  }

  .team-container {
    flex-direction: column;
    align-items: center;
  }
}
