html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Reveal animaties */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Langzame bounce voor de floating knop */
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

/* Selectie kleur */
::selection {
    background-color: #fecdd3;
    color: #881337;
}

/* Mobiele menu overgang */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Focus states voor toegankelijkheid */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #e11d48;
    outline-offset: 2px;
    border-radius: 0.5rem;
}