/* ========== ABOUT PAGE ========== */

.about-page {
  padding: 3rem 0 2rem;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.profile-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3b82f6;
}

.profile-text {
  flex: 1;
  min-width: 250px;
}

.profile-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.highlight {
  color: #7dd3fc;
}

.social-icons {
  margin-top: 1.2rem;
}

.social-icons a {
  margin-right: 1rem;
  display: inline-block;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(1) invert(0.3) sepia(1) hue-rotate(190deg);
}

.about-details {
  margin-top: 3rem;
  line-height: 1.7;
}

.about-details h3 {
  margin-bottom: 0.6rem;
  color: #fafafa;
}

.about-details p {
  color: #c9c9d1;
  margin-bottom: 1.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
  .profile {
    flex-direction: column;
    text-align: center;
  }

  .profile-photo img {
    width: 180px;
    height: 180px;
  }

  .social-icons {
    justify-content: center;
  }
}