/* Book/Reserve Button */
.book-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.book-button.visible {
    opacity: 1;
    visibility: visible;
}

.book-button a {
    background-image: linear-gradient(-90deg,#42aee0, #70c4eb);
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    border-bottom: 5px solid #0078a2;
    text-shadow: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.book-button a:hover {
    top: 3px;
    border-bottom: 2px solid #0078a2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.book-button .fa {
    font-size: 18px;
    margin-right: 5px;
}

/* Hide on small screens - will be handled by responsive menu */
@media (max-width: 767px) {
    .book-button {
        bottom: 15px;
        right: 15px;
    }
    
    .book-button a {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .book-button {
        bottom: 10px;
        right: 10px;
    }
    
    .book-button a {
        padding: 10px 15px;
        font-size: 13px;
    }
}
