/* Make mailto links yellow and remove underline */
.contact-info a[href^="mailto:"],
footer a[href^="mailto:"] {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.contact-info a[href^="mailto:"]:hover,
footer a[href^="mailto:"]:hover {
  color: #a06a00;
  text-decoration: underline;
}
/* Social media icons for contact page */
.contact-links {
  margin: 1.2rem 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  border-radius: 2rem;
  padding: 0.35rem 1.1rem 0.35rem 0.6rem;
  font-weight: 600;
  color: #ffe066;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(230,180,0,0.08);
  border: 1.5px solid #ffe066;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  font-size: 1.08rem;
}
.contact-link img {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  border-radius: 50%;
  background: #fffbe6;
  box-shadow: 0 1px 4px rgba(230,180,0,0.10);
}

.contact-link.instagram {
  color: #e4405f;
}
.contact-link.instagram:hover {
  background: #ffe6ef;
  color: #b92d5b;
}
.contact-link.facebook {
  color: #1877f3;
}
.contact-link.facebook:hover {
  background: #e7f0ff;
  color: #0e4a8a;
}
.contact-link.whatsapp {
  color: #25D366;
}
.contact-link.whatsapp:hover {
  background: #eafff3;
  color: #128C7E;
}
