@import url("global.css");

/* About header */
.about-header {
  padding: 2.75rem 1.5rem 2.5rem;
}

.about-header .max-w-7xl {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background-image: url("/img/about-background.webp");
  background-size: cover;
  background-position: center;
  padding: 3.75rem;
  max-width: 1000px;
}

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

.header-title {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 3.75rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.85rem;
}

.mission-statement {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 0.9rem;
}

.header-description {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.45rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.35rem;
  font-weight: 500;
}

.header-buttons {
  display: flex;
  gap: 0.75rem;
}

.header-buttons .btn {
  height: 2.25rem;
  border-radius: 999px;
  padding: 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1;
}

.header-buttons .btn-primary {
  background: #fff;
  color: #0d7fde;
  border: 1px solid #fff;
  box-shadow: none;
}

.header-buttons .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

/* Mission */
.mission-section {
  padding: 2.5rem 1.5rem 2rem;
}

.mission-section .max-w-7xl {
  background: #f2f1f9;
  border-radius: 0.6rem;
  max-width: 1000px;
  padding: 2.25rem 2rem 2rem 2rem;
}

.mission-section .section-title {
  margin-bottom: 0.8rem;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #222736;
}

.mission-accent {
  color: #6d44cf;
}

.mission-content {
  max-width: 100%;
  text-align: left;
}

.mission-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45rem;
  color: #3f4756;
  text-align: left;
}

/* Team */
.team-section {
  padding: 2.1rem 1.5rem 5rem;
}

.team-accent {
  color: #148ceb;
}

.team-section .section-title {
  margin-bottom: 1.9rem;
}

.team-container {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.team-member {
  width: 317px;
  min-height: 132px;
  border-radius: 10px;
  background: #eef2fb;
  box-shadow: none;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  position: relative;
}

.member-image {
  margin: 0;
  flex-shrink: 0;
}

.member-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
}

.member-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: baseline;
  margin-top: 0.5rem;
}

.member-name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.02;
  color: #202635;
  margin-bottom: 0.2rem;
}

.member-role {
  font-family: var(--font-inter);
  font-size: 1rem;
  color: #148ceb;
  margin: 0;
  font-weight: 500;
}

.member-links {
  position: absolute;
  right: 0.95rem;
  bottom: 0.95rem;
  margin: 0;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #0a66c2;
}

.linkedin-icon {
  width: 1rem;
  height: 1rem;
}

/* CTA */
.about-cta {
  padding: 5rem 1.5rem 0rem;
  background: #2f323b;
}

.about-cta .max-w-4xl {
  max-width: 860px;
}

.cta-title {
  margin-bottom: 0.6rem;
  color: #fff;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cta-accent {
  color: #1690ef;
}

.cta-description {
  margin-bottom: 1rem;
  font-size: 1.06rem;
  color: #eceff4;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.cta-buttons .btn {
  height: 2.25rem;
  border-radius: 999px;
  padding: 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: #2f323b;
  border: 1px solid #fff;
  box-shadow: none;
}

.cta-buttons .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

.copyright-text {
  font-size: 0.875rem;
  color: #fff;
  margin-top: 5.75rem;
  padding-bottom: 0.75em;
}

.copyright-text a {
  color: #fff;
  text-decoration: underline;
}

.copyright-text a:hover {
  color: #fff;
}
@media (max-width: 640px) {
  .about-header,
  .mission-section,
  .team-section,
  .about-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-header .max-w-7xl {
    padding: 2rem 1.2rem;
  }

  .header-title {
    font-size: 2.5rem;
  }

  .header-description,
  .mission-text,
  .cta-description {
    font-size: 1rem;
  }

  .mission-section .section-title,
  .team-section .section-title,
  .cta-title {
    font-size: 2rem;
  }

  .header-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-member {
    width: 100%;
  }
}
