/* leistungen.css */
.page-leistungen { /* kleine Anpassungen */ }

.fancy-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(90deg, #ff6b6b, #f06595, #845ec2);
    background-size: 300% 300%;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    animation: gradientMove 5s ease infinite;
}

.fancy-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.fancy-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

    .fancy-button:hover i {
        transform: translateX(5px);
    }

.fancy-button:active {
    transform: translateY(0px) scale(1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.button-wrapper {
    text-align: center;
    margin-top: 15px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }