.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}
/* Modal transitions */
.modal-transition {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* Hide scrollbar for carousel */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Social Links in Footer */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .social-links {
    justify-content: flex-start;
  }
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #558471; /* sage-500 */
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #365348; /* sage-700 */
  transform: scale(1.15);
}

.social-links a svg {
  width: 24px;
  height: 24px;
}
