#hero-footer {
  padding-bottom: 30px;
  border-top: 2px solid #35bee4;
  color: white; /* Set text color to white */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.6); /* White text shadow with glow effect */
}

.social-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-icon.instagram-button {
  background-image: url("/res/instagram-icon.png");
}

.social-icon.tiktok-button {
  background-image: url("/res/tiktok-icon.png");
}

.social-icon.whatsapp-button {
  background-image: url("/res/whatsapp-icon.png");
}

.social-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  #hero-footer .row {
    flex-direction: column;
  }
  #hero-footer .col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 540px) {
  .social-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 300px) {
  .social-icon {
    width: 30px;
    height: 30px;
  }
}
