/* =============== About Page Styles =============== */
#aboutPage {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
}

/* Copito Image */
.copito-img {
  width: 280px;
  max-width: 100%;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: block;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.3);
  border: 4px solid var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.copito-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(155, 89, 182, 0.5);
}

/* About Sections */
.about-section {
  padding: 25px 30px;
  margin: 0 0 20px 0;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), #e74c3c);
}

.about-section:first-of-type {
  text-align: center;
}

.about-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 15px 0;
  font-size: 1rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section strong {
  color: var(--text-color);
  font-weight: 600;
}

.email-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

#aboutPage h2 {
  color: var(--text-color);
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Donation Links */
.donation-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.donation-links a {
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donation-links a:hover {
  transform: translateY(-5px);
}

.donation-links img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.donation-links a:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(155, 89, 182, 0.3));
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  #aboutPage {
    padding: 15px;
  }

  .about-section {
    padding: 20px;
  }

  #aboutPage h2 {
    font-size: 1.3rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .copito-img {
    width: 220px;
  }

  .donation-links {
    flex-direction: column;
    gap: 15px;
  }

  .donation-links a {
    min-width: 100%;
  }
}
