/* Custom Styles & Animations */

/* Base Font Settings */
/* Removed global body font to avoid conflict with LP */

h1,
h2,
h3,
.font-chonky {
    font-family: 'Fredoka', sans-serif;
    /* 'Chonky' alternative */
}

/* Neumorphism Utilities */
.neumorphic-card {
    background: #F8EDE3;
    box-shadow: 8px 8px 16px #d3c9c0,
        -8px -8px 16px #ffffff;
    border-radius: 1.5rem;
    /* rounded-3xl */
}

.neumorphic-btn {
    background: #F8EDE3;
    box-shadow: 5px 5px 10px #d3c9c0,
        -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
}

.neumorphic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px #d3c9c0,
        -6px -6px 12px #ffffff;
}

.neumorphic-btn:active,
.neumorphic-btn.active {
    background: #F8EDE3;
    box-shadow: inset 5px 5px 10px #d3c9c0,
        inset -5px -5px 10px #ffffff;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes pulseSoft {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.animate-pulse-soft {
    animation: pulseSoft 2s infinite ease-in-out;
}

/* Vue Transitions */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
    transition: all 0.4s ease;
}

.slide-enter-from {
    opacity: 0;
    transform: translateX(30px);
}

.slide-leave-to {
    opacity: 0;
    transform: translateX(-30px);
}