/* About Page Styles */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.mission-card {
  background: var(--oxford-blue);
  padding: 30px;
  border-radius: var(--radius-12);
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-violet);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon ion-icon {
  font-size: 40px;
  color: var(--white);
}

.mission-card h3 {
  margin-bottom: 15px;
  color: var(--white);
}

.mission-card p {
  color: var(--manatee);
  line-height: 1.6;
}

/* Story Section */
.story-section {
  background: var(--oxford-blue-2);
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  padding-right: 20px;
}

.story-text h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.story-text p {
  color: var(--manatee);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: var(--body-md);
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.story-image img {
  width: 100%;
  max-width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--blue-violet_a20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
}

.value-number {
  font-size: 3rem;
  font-weight: var(--fw-700);
  color: var(--blue-violet);
  margin-bottom: 20px;
  font-family: var(--ff-urbanist);
}

.value-item h3 {
  margin-bottom: 15px;
  color: var(--white);
}

.value-item p {
  color: var(--manatee);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--oxford-blue-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: var(--fw-700);
  color: var(--blue-violet);
  margin-bottom: 10px;
  font-family: var(--ff-urbanist);
}

.stat-label {
  color: var(--manatee);
  font-size: var(--label-lg);
  font-weight: var(--fw-500);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-member {
  background: var(--oxford-blue);
  padding: 40px 30px;
  border-radius: var(--radius-12);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--blue-violet);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.member-role {
  color: var(--blue-violet);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  font-size: var(--label-lg);
}

.team-member p {
  color: var(--manatee);
  line-height: 1.6;
  margin-bottom: 25px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social .social-link {
  width: 45px;
  height: 45px;
  background: var(--oxford-blue-2);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--manatee);
  transition: all 0.3s ease;
}

.member-social .social-link:hover {
  background: var(--blue-violet);
  color: var(--white);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: var(--oxford-blue-2);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  margin-bottom: 30px;
  color: var(--manatee);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue-violet);
  color: var(--blue-violet);
}

.btn-outline:hover {
  background: var(--blue-violet);
  color: var(--white);
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .story-content {
    gap: 40px;
    padding: 0 20px;
  }

  .story-text {
    padding-right: 10px;
  }

  .story-image {
    padding-left: 10px;
  }

  .story-image img {
    max-width: 350px;
    height: 450px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .story-section {
    padding: 60px 0;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .story-text {
    order: 2;
    padding-right: 0;
    text-align: left;
  }

  .story-image {
    order: 1;
    padding-left: 0;
    justify-content: center;
  }

  .story-image img {
    max-width: 300px;
    height: 400px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .story-section {
    padding: 40px 0;
  }

  .story-content {
    gap: 30px;
    padding: 0 15px;
  }

  .story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .story-text p {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .story-image img {
    max-width: 280px;
    height: 350px;
  }

  .mission-grid,
  .values-grid,
  .stats-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .story-image img {
    max-width: 250px;
    height: 320px;
  }

  .story-text h2 {
    font-size: 2rem;
  }

  .story-text p {
    font-size: 1.5rem;
  }
}
