/* Custom animations and effects that can't be done with Tailwind utilities */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Custom utility classes for complex effects */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-location:hover .btn-glow,
.btn-random:hover .btn-glow {
  left: 100%;
}

/* Custom marker styles for map */
.custom-marker {
  background: none !important;
  border: none !important;
}
