/**
 * About Section CTA Button Fix
 * Datum: 2025-11-13
 * Problem: Buttons verschwinden nach 1 Sekunde wegen Scroll-Animations
 */

/* DEAKTIVIERE ALLE ANIMATIONEN FÜR CTA BOX IN ABOUT SECTION */
.about-section .portfolio-cta-box,
.about-section .portfolio-cta-box *,
.about-section .portfolio-cta-title,
.about-section .portfolio-cta-description,
.about-section .portfolio-cta-buttons,
.about-section .portfolio-cta-button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* About Section - Portfolio CTA Box */
.about-section .portfolio-cta-box {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: 3rem !important;
    padding: 2.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;

    /* FORCE VISIBILITY - Überschreibt alle Scroll-Reveal-Animationen */
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}

/* CTA Title */
.about-section .portfolio-cta-title {
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    color: #1f2937 !important;
}

/* CTA Description */
.about-section .portfolio-cta-description {
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
    margin-bottom: 2rem !important;
}

/* CTA Buttons Container */
.about-section .portfolio-cta-buttons {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    position: relative !important;
    z-index: 20 !important;
}

/* Individual Buttons */
.about-section .portfolio-cta-button {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 2rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 30 !important;
    pointer-events: auto !important;

    /* NUR Hover-Transition erlauben, keine anderen Animationen */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    animation: none !important;
    -webkit-animation: none !important;
}

/* Gradient Button */
.about-section .portfolio-cta-button.btn-gradient {
    background: linear-gradient(135deg, #8000ff 0%, #6366f1 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(128, 0, 255, 0.3) !important;
}

.about-section .portfolio-cta-button.btn-gradient:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(128, 0, 255, 0.4) !important;
}

/* Glass Button */
.about-section .portfolio-cta-button.btn-glass {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(128, 0, 255, 0.3) !important;
    color: #8000ff !important;
}

.about-section .portfolio-cta-button.btn-glass:hover {
    background: rgba(128, 0, 255, 0.1) !important;
    border-color: rgba(128, 0, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section .portfolio-cta-box {
        padding: 2rem 1.5rem !important;
    }

    .about-section .portfolio-cta-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .about-section .portfolio-cta-button {
        width: 100% !important;
        justify-content: center !important;
    }
}
