/* Kontakt-Button auf Bewerbungsseiten — theme-neutral (weiß + Schatten,
   funktioniert auf hellen wie dunklen Designs), schwebend unten rechts. */

.ba-contact-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #16292B;
    background: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22), 0 1px 4px rgba(0, 0, 0, 0.14);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ba-contact-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26), 0 2px 6px rgba(0, 0, 0, 0.16);
}
.ba-contact-fab:focus-visible {
    outline: 3px solid #0B7180;
    outline-offset: 2px;
}

/* Footer im Bild → Button weicht (site.js, IntersectionObserver) */
.ba-contact-fab.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
.ba-contact-fab { transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.25s ease; }

@media (max-width: 520px) {
    .ba-contact-fab { right: 12px; bottom: 12px; padding: 12px 17px; font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .ba-contact-fab { transition: none; }
}

@media print {
    .ba-contact-fab { display: none; }
}
