/*==========================================
    Catering Packages
==========================================*/

.catering-packages-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
}

.catering-card{
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.catering-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/*==========================================
    Header
==========================================*/

.catering-card-header{
    background:#175EDA;
    color:#fff;
    text-align:center;
    font-size:20px;
    font-weight:700;
    padding:16px;
}

/*==========================================
    Body
==========================================*/

.catering-card-body{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.menu-column{
    padding:18px;
    border-right:1px solid #ececec;
}

.price-column{
    padding:18px;
}

.menu-column h4,
.price-column h4{
    font-size:17px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

/*==========================================
    Menu List
==========================================*/

.menu-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.menu-item{
    border:1px solid #dcdcdc;
    background:#fff;
    padding:10px 12px;
    font-size:14px;
    line-height:1.4;
    color:#333;
}

/*==========================================
    Price List
==========================================*/

.price-list{
    display:flex;
    flex-direction:column;
}

.price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #f2f2f2;
    gap:15px;
}

.price-row:last-child{
    border-bottom:none;
}

.price-row span{
    font-size:14px;
    color:#555;
}

.price-row strong{
    color:#d18a00;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
}

/*==========================================
    Footer
==========================================*/

.catering-card-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.book-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;          /* Adjust width as needed */
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.book-btn:hover{
    background: #c89b3c;   /* Your theme color */
    color: #fff;
}
/*==========================================
    Responsive
==========================================*/

@media (max-width:991px){

    .catering-packages-grid{

        grid-template-columns:1fr;

    }

    .catering-card-body{

        grid-template-columns:1fr;

    }

    .menu-column{

        border-right:none;
        border-bottom:1px solid #ececec;

    }

}

@media (max-width:576px){

    .menu-column,
    .price-column{

        padding:15px;

    }

    .catering-card-header{

        font-size:18px;

    }

    .price-row{

        flex-direction:column;
        align-items:flex-start;
        gap:4px;

    }

    .book-btn{

        font-size:15px;

    }

}