@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Press Start 2P', cursive;
}

/* Neo-brutalism styles */
.shadow-md {
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.75);
}

.shadow-lg {
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.75);
}

.shadow-inner {
    box-shadow: inset 0px 4px 0px 0px rgba(0, 0, 0, 0.75);
}

.border-2 {
    border-width: 2px;
}

/* Floating animation for basket image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

/* FAQ smooth animation */
details {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

details[open] summary~* {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.spark {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.fade-move {
    opacity: 0;
}