/* ==========================================================
   WEMOVE CTA Button – Standalone Shortcode Styles
   [button-wemove url="..." target="..." label="..."]
   
   !important Overrides damit der Button auf jeder Seite
   identisch aussieht, egal welches Theme-CSS geladen ist.
   ========================================================== */

/* Button Base */
.wemove-cta-button {
    font-family: Oswald, sans-serif !important;
    letter-spacing: 1px !important;
    background-color: #000 !important;
    color: #fff !important;
    padding: 12px 64px !important;
    border: 1px solid #fff !important;
    border-radius: 2px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Hover – Farben invertieren + subtiler Glow + leichter Zoom */
.wemove-cta-button:hover {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.25) !important;
    transform: scale(1.04) !important;
    text-decoration: none !important;
}

.wemove-cta-button:active {
    transform: scale(0.98) !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2) !important;
}

/* Button Text & Icon */
.wemove-cta-button .button-text {
    display: inline-flex !important;
    align-items: center !important;
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    text-transform: inherit !important;
    letter-spacing: inherit !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.wemove-cta-button .button-icon-left {
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
}

.wemove-cta-button:hover .button-text {
    color: #000 !important;
}

.wemove-cta-button:hover .button-icon-left {
    color: #000 !important;
    transform: translateX(3px) !important;
}

/* Monkey Animation */
a.wemove-cta-button img.wemove-cta-monkey {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: none;
    animation: none;
}

a.wemove-cta-button:hover img.wemove-cta-monkey {
    animation: wemove-cta-monkey-jump 1.2s ease forwards;
}

@keyframes wemove-cta-monkey-jump {
    0% {
        left: -40px;
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: calc(100% + 10px);
        transform: translateY(-50%);
        opacity: 0;
    }
}

/* Smooth Scroll Behavior für Anker-Links */
html {
    scroll-behavior: smooth;
}
