/* Sticky Call Button Container */
.sticky-call-container {
    position: fixed;
    right: 40px;
    bottom: 15px;
    z-index: 1000;
}

/* Alap gombstílusok */
.sticky-call-button {
    display: inline-block;
    background-color: #cc1616;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.sticky-call-button:hover {
    background-color: rgb(125, 60, 60);
    color: #fff;
}

/* Asztali nézet: csak a "Kapcsolat" gomb látszik */
.desktop-contact {
    bottom: 15px;
    right: 40px;
    width: 15%;
    position: fixed;
    display: block;
}

/* Mobil és tablet nézet: csak a "Hívás" gomb látszik */
.mobile-call {
    display: none;
}

/* Tablet és mobil nézet: teljes szélességű "Hívás" gomb */
@media screen and (max-width: 1024px) {
    .sticky-call-container {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
    }

    .mobile-call {
        display: block; /* Csak mobilon jelenjen meg */
        width: 100%;
        border-radius: 0;
        padding: 20px;
        font-size: 20px;
    }

    .desktop-contact {
        display: none; /* Asztali gomb elrejtése mobilon */
    }
}
