*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f4;
color:#222;
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
background:white;
}

.logo h2{
font-size:40px;
font-weight:800;
}

.logo span{
font-size:12px;
letter-spacing:1px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:#222;
font-weight:600;
text-transform:uppercase;
font-size:14px;
}

.btn{
padding:14px 28px;
border-radius:40px;
font-weight:600;
display:inline-block;
}

.yellow{
background:#f3b327;
color:black;
}

.green{
background:#36432b;
color:white;
}

.white{
background:white;
color:black;
}



/* ================= TITLE ================= */

.page-title{

    text-align:center;

    padding:45px 20px 25px;

}

.page-title h1{

    font-size:58px;

    font-weight:800;

    letter-spacing:1px;

}

.page-title span{

    color:#d8a028;

}

.page-title p{

    margin-top:8px;

    font-family:Yellowtail,cursive;

    color:#d8a028;

    font-size:34px;

}


/* ================= TABS ================= */

.menu-tabs{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:35px;

}

.menu-tabs button{

    width:180px;

    height:46px;

    border-radius:8px;

    border:1px solid #ccc;

    background:#fff;

    font-weight:700;

    cursor:pointer;

}

.menu-tabs button.active{

    background:#d8a028;

    color:#fff;

    border:none;

}


/* ================= CONTENT ================= */

.menu-wrapper{

    width:1250px;

    max-width:95%;

    margin:auto;

    display:grid;

    grid-template-columns:260px 1fr 220px;

    gap:28px;

}
/* Left & Right Cards */

.menu-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:10px;

    padding:22px;

}

.menu-card h3{

    margin-bottom:20px;

    font-size:18px;

    font-weight:700;

}

.menu-item{

    display:flex;

    justify-content:space-between;

    gap:12px;

    margin-bottom:22px;

}

.menu-item h4{

    font-size:15px;

    margin-bottom:6px;

}

.menu-item p{

    font-size:12px;

    color:#666;

    line-height:1.6;

}

.menu-item span{

    color:#d8a028;

    font-weight:700;

    white-space:nowrap;

}


/* Featured Image */

.featured-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:10px;

    overflow:hidden;

}

.featured-card img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* Add-ons */

.addons{

    list-style:none;

}

.addons li{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid #efefef;

    font-size:14px;

}

.addons li:last-child{

    border-bottom:none;

}

.addons span{

    color:#d8a028;

    font-weight:700;

}/* ================= PROMO ================= */

.promo{

    width:1250px;

    max-width:95%;

    margin:40px auto;

    display:grid;

    grid-template-columns:1fr 360px;

    overflow:hidden;

    border-radius:10px;

    background:#f5e7c8;

    border:1px solid #eadab4;

}

.promo-content{

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.promo-content h2{

    font-size:34px;

    margin-bottom:12px;

    font-weight:800;

}

.promo-content p{

    color:#666;

    margin-bottom:25px;

    line-height:1.7;

}

.promo-btn{

    width:210px;

    text-align:center;

    background:#334025;

    color:#fff;

    padding:15px;

    border-radius:8px;

    font-weight:600;

}

.promo-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* ================= FOOTER ================= */

footer{

    background:#2c3521;

    color:#fff;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    padding:45px 60px;

}

.footer-box h4{

    margin-bottom:18px;

    font-size:16px;

}

.footer-box p{

    color:#d6d6d6;

    margin-bottom:8px;

    font-size:14px;

}

.footer-box h3{

    font-size:28px;

    margin:15px 0;

}

.footer-box a{

    color:#d8a028;

    font-weight:600;

}

.call-btn{

    display:inline-block;

    background:#d8a028;

    color:#000 !important;

    padding:13px 24px;

    border-radius:6px;

    margin-top:10px;

}

.social{

    display:flex;

    gap:12px;

    margin-bottom:18px;

}

.social a{

    width:34px;

    height:34px;

    border:1px solid rgba(255,255,255,.35);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

}

.footer-box span{

    color:#d8a028;

    font-weight:600;

}

.copyright{

    background:#22291b;

    color:#bbb;

    text-align:center;

    padding:15px;

    font-size:13px;

}


/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .menu-wrapper{

        grid-template-columns:1fr;

    }

    .promo{

        grid-template-columns:1fr;

    }

    .promo-image{

        height:280px;

    }

    footer{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    header{

        padding:18px 20px;

    }

    nav{

        display:none;

    }

    .page-title h1{

        font-size:42px;

    }

    .page-title p{

        font-size:28px;

    }

    .menu-tabs{

        flex-direction:column;

        align-items:center;

    }

    .menu-tabs button{

        width:260px;

    }

    footer{

        grid-template-columns:1fr;

    }

    .promo-content{

        padding:30px;

    }

}