/* ========================================
   CONTACT SECTION STYLES
======================================== */

.contact {
  background: var(--background-color);
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.contact-description {
  color: var(--text-color);
  margin-bottom: 3rem;
}

/* Removed email-section, email-title, social-section, social-title styles as they are no longer used */

.email-link {
  padding: 0;
  border-bottom: none;
  flex-direction: row;
  display: inline-flex;
  text-decoration: none;
}

.email-link .contact-value {
  color: var(--text-color);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
  letter-spacing: 0.03125rem;
}

/* Treat email link like social link for hover effect */
.email-link:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  padding: 0.15rem 0;

  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
  text-decoration: none;
  text-decoration-color: currentColor;
}

.social-link:hover {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.social-divider {
  color: var(--text-color);
  font-weight: 400;
  user-select: none;
}

.contact-label {
  color: var(--text-color);
  letter-spacing: 0.03125rem;
}

.contact-value {
  color: var(--text-color);
}

.social-link.linkedin,
.social-link.linkedin .contact-label {
  color: #0077b5;
}

.social-link.github,
.social-link.github .contact-label {
  color: #333333;
}

.social-link.bluesky,
.social-link.bluesky .contact-label {
  color: #00bcd4;
}

.social-link.orcid,
.social-link.orcid .contact-label {
  color: #3ac267;
}

.social-link.scholar,
.social-link.scholar .contact-label {
  color: #80a4f3;
}

/* Dark mode override for GitHub social link */
[data-theme="dark"] .social-link.github,
[data-theme="dark"] .social-link.github .contact-label {
  color: #ffffff;
}
