/* assets/social-media.css */

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}

/* Optional: Ensure icons look circular if using icon buttons */
.footer-social a i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
}

/* Optional responsive tweak for smaller screens */
@media (max-width: 576px) {
  .footer-social {
    gap: 14px;
  }

  .footer-social a {
    font-size: 1.3rem;
  }
}
