/* Booking button */
.btn-reserver {
    background-color: #e44611;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-reserver:hover {
    color: #fff;
    text-decoration: none;
}

.btn-reserver::after {
    transition: all 0.3s ease-in-out;
}

/* Magnifying effect of button */
.grow-on-hover {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.grow-on-hover:hover,
.grow-on-hover:focus,
.grow-on-hover:active {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
