
/*# sourceMappingURL=custom.css.map */

/* WhatsApp Floating Button */
.whatsapp_call {
    position: fixed;
    z-index: 9999;           /* immer über anderen Elementen */
    bottom: 200px;           /* Abstand vom unteren Rand, über Scroll-to-Top */
    right: 30px;             /* Abstand vom rechten Rand */
    width: 50px;             /* runder Button */
    height: 50px;
    line-height: 50px;
    border-radius: 50%;      /* komplett rund */
    background-color: #25D366; /* WhatsApp Grün */
    color: #fff;             /* Icon Farbe Weiß */
    font-size: 28px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* leichter Schatten */
    transition: all 0.3s ease; /* sanfte Animation bei Hover */
    text-decoration: none;    /* keine Unterstreichung */
}

/* Icon im Link */
.whatsapp_call i {
    color: #fff;
}

/* Hover Effekt */
.whatsapp_call:hover {
    background-color: #1ebe57; /* etwas dunkleres Grün beim Hover */
    position: fixed;
    z-index: 9999;           /* immer über anderen Elementen */
    bottom: 200px;           /* Abstand vom unteren Rand, über Scroll-to-Top */
    right: 30px;             /* Abstand vom rechten Rand */
    width: 52px;             /* runder Button */
    height: 52px;
    line-height: 50px;
    border-radius: 50%;      /* komplett rund */
    color: #fff;             /* Icon Farbe Weiß */
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* leichter Schatten */
    transition: all 0.3s ease; /* sanfte Animation bei Hover */
    text-decoration: none;    /* keine Unterstreichung */
}
