
.g-menu-cards {
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
}

.g-menu-card {
    height: 235px;
    margin-top: 55px;
    border: 1px solid #ddd;
    border-radius: 22px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

    .g-menu-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }

.g-menu-card-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.g-menu-card-title {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    padding: 0 15px;
    margin-top: 55px;
}
.g-menu-card-title a{
    float:right;color:black !important;
}
.g-menu-card-orange {
    background: linear-gradient(145deg, #ffb000, #ef8c00);
}

.g-menu-card-blue {
    background: linear-gradient(145deg, #d8f5f8, #b8e4e8);
}

    .g-menu-card-blue .g-menu-card-title {
        color: #356477;
    }

.g-menu-card-green {
    background: linear-gradient(145deg, #72df70, #35b94b);
}

.g-menu-side {
    height: 235px;
    border: 1px solid #ddd;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: all .35s ease;
}

    .g-menu-side:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }

    .g-menu-side img {
        width: 100%;
        height: 185px;
        object-fit: cover;
        display: block;
    }

.g-menu-side-btn {
    height: 50px;
    width: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease;
}

    .g-menu-side-btn:hover {
        color: #fff;
    }

.g-menu-book {
    background: #e51e25;
}

    .g-menu-book:hover {
        background: #bd1118;
    }

.g-menu-guest {
    background: #1658c7;
}

    .g-menu-guest:hover {
        background: #0d439f;
    }

@@media (max-width: 991.98px) {
    .g-menu-card,
    .g-menu-side {
        height: 220px;
    }

    .g-menu-card-image {
        width: 100px;
        height: 100px;
    }

    .g-menu-card-title {
        font-size: 19px;
    }

    .g-menu-side img {
        height: 170px;
    }

    .g-menu-side-btn {
        height: 50px;
        font-size: 16px;
    }
}

@@media (max-width: 767.98px) {
    .g-menu-cards {
        padding: 10px 0;
    }

    .g-menu-card,
    .g-menu-side {
        height: 230px;
        margin-bottom: 15px;
    }

    .g-menu-card-image {
        width: 105px;
        height: 105px;
    }

    .g-menu-card-title {
        font-size: 20px;
    }

    .g-menu-side img {
        height: 180px;
    }
}


