/*
 * Custom CSS - Eigene Anpassungen
 * Diese Datei ist fuer zusaetzliche Styles, die ueber Tailwind hinausgehen
 */

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

/* Animationen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Karten-Hover-Effekt */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Custom Scrollbar (optional) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #a8e62e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #84b824;
}

/* Schwebende Musiknoten Animation */
@keyframes float-note-1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.25;
    }
}

@keyframes float-note-2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(-15deg);
        opacity: 0.2;
    }
}

@keyframes float-note-3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
        opacity: 0.22;
    }
}

.floating-note-1 {
    animation: float-note-1 6s ease-in-out infinite;
}

.floating-note-2 {
    animation: float-note-2 8s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-note-3 {
    animation: float-note-3 7s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-note-4 {
    animation: float-note-1 9s ease-in-out infinite;
    animation-delay: 3s;
}

.floating-note-5 {
    animation: float-note-2 5s ease-in-out infinite;
    animation-delay: 0.5s;
}
