.nav-social-links {
  display: flex;
  align-items: center;
}
.nav-social-link {
  font-size: 1.5rem; 
  color: var(--text-color);
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav-social-link:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}
.mobile-social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.mobile-social-link {
  font-size: 1.8rem; 
  color: var(--text-color);
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-social-link:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}
