@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

/* Glow button effect */
.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.glow-button:hover::before {
    left: 100%;
}

/* Card hover effects */
.activity-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
}

/* Map container styling */
#map {
    border: 2px solid rgba(20, 184, 166, 0.2);
}

/* Custom leaflet popup styling */
.leaflet-popup-content-wrapper {
    background: #1e293b;
    color: #f3f4f6;
    border-radius: 8px;
    border: 1px solid #334155;
}

.leaflet-popup-tip {
    background: #1e293b;
}

/* Loading animation */
.loading-spinner {
    border: 3px solid #334155;
    border-top: 3px solid #14B8A6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gradient text animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gradient-text-animated {
    background: linear-gradient(45deg, #14B8A6, #FBBF24, #3B82F6, #14B8A6);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive design enhancements */
@media (max-width: 768px) {
    .glow-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .floating-animation svg {
        width: 48px;
        height: 48px;
    }
}

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

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #14B8A6, #FBBF24);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0D9488, #F59E0B);
}
