/* ResumeGrow — About Page */

/* ══ CONTAINER ══ */
.ab-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══ SECTION 1: HERO ══ */
.ab-hero-section {
  background: linear-gradient(135deg, #fff 60%, #EFF6FF 100%);
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.ab-hero-deco-left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

.ab-squiggle {
  width: 100px;
  height: 140px;
}

.ab-hero-deco-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(219,234,254,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.ab-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ab-hero-heading {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.ab-hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  color: #64748B;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ══ SECTION 2: TEAM ══ */
.ab-team-section {
  background: #F8FAFC;
  padding: 80px 32px;
  text-align: center;
}

.ab-team-heading {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ab-team-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #64748B;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 60px;
}

.ab-team-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.ab-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  transition: transform 0.3s ease;
}

.ab-team-member:hover {
  transform: translateY(-4px);
}

.ab-member-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10), 0 0 0 4px rgba(59,130,246,0.08);
  margin-bottom: 20px;
  position: relative;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.ab-team-member:hover .ab-member-photo-wrap {
  border-color: #3B82F6;
  box-shadow: 0 8px 28px rgba(29,78,216,0.18), 0 0 0 4px rgba(59,130,246,0.12);
}

.ab-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-member-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.ab-ph-blue { background: linear-gradient(135deg, #4b83ff, #3B82F6); }
.ab-ph-teal { background: linear-gradient(135deg, #10B981, #0D9488); }

.ab-member-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 4px;
  text-align: center;
  line-height: 1.2;
}

.ab-member-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  text-align: center;
  margin: 0 0 2px;
  line-height: 1.4;
}

.ab-member-company {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: #94A3B8;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.4;
}

.ab-member-socials {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.ab-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ab-social-icon svg { width: 14px; height: 14px; }
.ab-social-icon:hover { transform: translateY(-2px); }

.ab-si-twitter:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.ab-si-instagram:hover {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  border-color: #DD2A7B;
  color: #fff;
}

.ab-si-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .ab-hero-section { padding: 70px 20px 60px; }
  .ab-hero-heading { font-size: 32px; }
  .ab-hero-sub { font-size: 15px; }
  .ab-hero-deco-left { display: none; }
  .ab-team-section { padding: 60px 20px; }
  .ab-team-heading { font-size: 28px; }
  .ab-team-grid { flex-direction: column; align-items: center; gap: 48px; }
  .ab-container { padding: 0 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ab-hero-heading { font-size: 42px; }
  .ab-team-grid { gap: 48px; }
}
