@import url('style.css');

/* HERO SECTION */
.meet-hero {
  padding-top: calc(var(--nav-h) + 90px);
  padding-bottom: 90px;
  background: linear-gradient(180deg, #fff8f7, #fefaf5);
  text-align: center;
}
.meet-hero h1 {
  font-size: 2.8rem;
  color: #6fbb79;
  margin-bottom: 18px;
}
.meet-hero h1 span {
  color: #6fbb79;
}
.meet-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CHARACTER SECTIONS */
.character-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.character {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.character.reverse {
  flex-direction: row-reverse;
}
.char-text {
  flex: 1 1 500px;
}
.char-text h2 {
  font-size: 2rem;
  color: var(--accent3);
  margin-bottom: 18px;
}
.char-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}
.char-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}
.char-image img {
  width: 320px;
  max-width: 90%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}
.char-image img:hover {
  transform: translateY(-8px) scale(1.03);
}

/* FRIENDSHIP SECTION */
.friendship {
  background: var(--accent4);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.friendship h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.friendship p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER SPACING FIX */
footer {
  margin-top: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .character {
    flex-direction: column;
    text-align: center;
  }
  .char-image img {
    width: 240px;
  }
  .char-text h2 {
    font-size: 1.7rem;
  }
}