/* SOCIAL MEDIA ICON STYLING */

.social-icons {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  font-size: 22px;
  color: #ffffff;
  background-color: #03A6A1;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-icons a:hover {
  transform: scale(1.15);
  background-color: #FF4F0F;
  color: #FFE3BB;
}

/* Optional: Stack icons on small devices */
@media (max-width: 480px) {
  .social-icons a {
    margin: 6px;
    font-size: 20px;
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
}
