/* --- ZWEVENDE WHATSAPP KNOP --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    /* Afstand van de onderkant */
    right: 25px;
    /* Afstand van de rechterkant */
    background-color: #25d366;
    /* WhatsApp groen */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    /* Maakt de knop rond/ovaal */
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    /* Zorgt dat de knop bovenop alles ligt, ook de kaart */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float img {
    width: 25px;
    height: 25px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    /* Vergroot de knop een klein beetje bij hover */
    color: white;
}

/* --- MOBIELE AANPASSING --- */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
        /* Verberg de tekst op mobiel voor een cleaner uiterlijk */
    }

    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
        /* Maakt een perfecte cirkel op mobiel */
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
        margin: 0;
    }
}