.contact {
  padding: 80px 20px;
  background-color: var(--primary-color);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--font-color);
  position: relative;
}

.contact p {
  font-size: 1.2rem;
  color: var(--font-color);
  line-height: 1.6;
}

.ripple-link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  vertical-align: middle; /* Align the link with the rest of the paragraph */
}

.ripple-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgba(255, 99, 71, 0.4);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.ripple-link:hover {
  color: var(--accent-color);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 99, 71, 0.4);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.social-icon img:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon img:active {
  transform: scale(1.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
