html {
  scroll-behavior: smooth;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0);
  }
}
.animate-pulse-glow {
  animation: pulse-glow 1.4s ease-in-out infinite;
}

@keyframes pulse-glow-instagram {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 51, 129, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(217, 51, 129, 0);
  }
}
.animate-pulse-glow-instagram {
  animation: pulse-glow-instagram 1.6s ease-in-out infinite;
}

.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #c7d2fe transparent;
}
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #c7d2fe;
  border-radius: 999px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #a5b4fc;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

button, a, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
