/* Fixed Action Buttons - WhatsApp & Booking */

/* WhatsApp Bubble - Rechts unten */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #a8d530; /* Deine Primary Color */
    color: #1e1e1e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(168, 213, 48, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    font-size: 28px;
    font-weight: bold;
}

.whatsapp-bubble:hover {
    background: #8fb821; /* Primary Dark */
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(168, 213, 48, 0.7);
    color: #1e1e1e;
}

/* Pulsing Animation für Aufmerksamkeit */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(168, 213, 48, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(168, 213, 48, 0.9);
    }
}

.whatsapp-bubble {
    animation: pulse 2s infinite;
}

/* Tooltip/Label beim Hover */
.whatsapp-bubble::before {
    content: 'WhatsApp';
    position: absolute;
    right: 75px;
    background: #1e1e1e;
    color: #a8d530;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.whatsapp-bubble:hover::before {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 25px;
        right: 25px;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    /* Tooltips auf Mobile ausblenden */
    .whatsapp-bubble::before {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .whatsapp-bubble {
        bottom: 25px;
        right: 25px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}