@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  overflow: hidden;
}

.custom-berry-marker {
  background: transparent;
  border: none;
}

.leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-tip {
  display: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}

.animate-bounce-in {
  animation: bounce-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FFE5EC;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #FF69B4;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FF5757;
}

/* Leaflet controls styling */
.leaflet-control-zoom {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-control-zoom a {
  background: white !important;
  color: #FF5757 !important;
  font-weight: bold !important;
  border: none !important;
}

.leaflet-control-zoom a:hover {
  background: #FFE5EC !important;
}

/* Map container */
#map {
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .leaflet-popup-content-wrapper {
    max-width: 250px;
  }
}