/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.logo-text {
    font-family: "Caveat", cursive;
    font-size: 2rem;
    font-style: normal;
    color: #978667;
    margin-left: 1rem;
}

#message-booking {
    text-align: center;
    padding-bottom: 2rem;
}

.tarif-card {
    background-color: #faf8f5;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.tarif-card:hover {
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.05);
}
.tarif-card:hover .tarif-icon svg {
    transform: scale(1.15);
}

.tarif-card p {
    margin: 15px 0;
}

.tarif-icon svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    fill: #e0a02f;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}