/* Couple Section */
.couple-section {
  padding: 100px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .couple-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .couple-section {
    padding: 50px 0;
  }
}

.section-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.couple-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.child-desc {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #666;
}

.person {
  text-align: center;
  max-width: 300px;
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition:
    transform 0.5s,
    box-shadow 0.5s;
  border: 2px solid rgba(212, 175, 135, 0.1);
}

.person:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.person-name {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--secondary);
  font-weight: 400;
}

.person-desc {
  font-style: italic;
  color: #7a7a7a;
  margin-bottom: 15px;
}

.divider {
  width: 80px;
  height: 2px;
  background: var(--primary);
  margin: 30px auto;
}

/* Responsive untuk couple section */
@media (max-width: 768px) {
  .couple-container {
    gap: 40px;
  }

  .person {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .couple-container {
    flex-direction: column;
    gap: 30px;
  }

  .person {
    max-width: 100%;
    padding: 25px 20px;
  }
}
