/* Sanftes Scrollen für die gesamte Seite */
html {
    scroll-behavior: smooth;
}

/* Animation für die Ziel-Sektion */
.section-highlight {
    animation: highlightSection 1.5s ease-out;
}
/* Die Wackel-Animation für die Sektion */
.section-shake {
    animation: jumpShake 0.6s ease-in-out;
}

@keyframes jumpShake {
    0% { transform: scale(1); }
    25% { transform: rotate(1deg) scale(1.01); }
    50% { transform: rotate(-1deg) scale(1.01); }
    75% { transform: rotate(0.5deg) scale(1.005); }
    100% { transform: rotate(0deg) scale(1); }
}
