/*=========================================
SIGNATURE DISHES
=========================================*/

.mz-menu{

    padding:120px 0;

    background:#0b0b0b;

}

.mz-section-title{

    text-align:center;

    margin-bottom:70px;

}

.mz-section-title span{

    color:#D4AF37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

}

.mz-section-title h2{

    font-size:54px;

    margin:20px 0;

    color:#fff;

}

.mz-section-title p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto;

}

.mz-menu-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.mz-menu-card{

    background:#171717;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.mz-menu-card:hover{

    transform:translateY(-10px);

}

.mz-menu-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.mz-menu-content{

    padding:28px;

}

.mz-menu-content h3{

    color:#fff;

    margin-bottom:15px;

}

.mz-menu-content p{

    color:#cfcfcf;

    margin-bottom:25px;

}

.mz-menu-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.mz-menu-bottom span{

    color:#D4AF37;

    font-size:24px;

    font-weight:bold;

}

.mz-menu-bottom a{

    color:#fff;

    border:1px solid #D4AF37;

    padding:10px 20px;

    border-radius:40px;

}

.mz-menu-bottom a:hover{

    background:#D4AF37;

    color:#111;

}