*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f4;
color:#140b01;
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
}


.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* nav */
.hamburger{
    display:none;
    width:35px;
    height:30px;
    position:relative;
    background:none;
    border:none;
    cursor:pointer;
}

.hamburger span{
    position:absolute;
    width:100%;
    height:3px;
    background:#222;
    left:0;
    transition:.3s;
}

.hamburger span:nth-child(1){
    top:4px;
}

.hamburger span:nth-child(2){
    top:13px;
}

.hamburger span:nth-child(3){
    top:22px;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:13px;
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:13px;
}
/* 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:#2e170d;
font-weight:600;
text-transform:uppercase;
font-size:24px;
}

nav a.active{

    color:#d6a323;

}
h2{
color:#d79a20;
margin-bottom:10px;
 font-family:'Caveat',cursive;

}
nav  a.active::after{

    width:100%;

}

.white{
background:white;
color:rgb(29, 17, 6);
}
a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #A6A6A6;
  width: 0%;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
  animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}
/* Title */

.menu-header{
    text-align:center;
    padding:60px 20px 30px;
}

.menu-header h1{
    font-size:54px;
    font-weight:800;
    margin-bottom:10px;
}

.menu-header p{
    color:#d8a028;
    font-size:20px;
}

/* MOBILE */

@media(max-width:800px){

.menu-grid{

    grid-template-columns:1fr;

}

.menu-header h2{

    font-size:42px;

}

}


/* =====================
   MENU GRID
===================== */

.menu-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
    margin-bottom:60px;

}

.menu-card{

    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.3s;

}

.menu-card:hover{

    transform:translateY(-8px);

}

.menu-card h3{

    font-size:28px;
    color:var(--secondary);
    margin-bottom:25px;
    border-bottom:2px solid var(--primary);
    display:inline-block;
    padding-bottom:10px;

}

.menu-item{

    margin-bottom:30px;

}

.menu-item h4{

    color:#222;
    font-size:20px;
    margin-bottom:8px;

}

.menu-item p{

    color:#666;
    font-size:15px;

}

/* =====================
   SIDE ORDERS
===================== */

.side-orders{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;

}

.side-orders li{

    background:#fafafa;
    border:1px solid var(--border);
    border-radius:10px;
    padding:14px;

}


/* Footer */


footer{

    background:#220801;

    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;

}



.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:#110600;

    color:#bbb;

    text-align:center;

    padding:15px;

    font-size:13px;

}


/* =====================
   RESPONSIVE
===================== */


@media(max-width:768px){

    

.menu-page{

    padding:50px 20px;

}

.menu-card{

    padding:25px;

}

.menu-item{

    flex-direction:column;

}

.menu-item span{

    margin-top:10px;
}

.menu-card h3{
    font-size:24px;

}
   
    .header{
        padding:18px 20px;
    }
    footer{
    grid-template-columns:1fr;
    }

    header{
        position:relative;
        padding:15px 20px;
    }

    .hamburger{
        display:block;
        order:3;
    }

  

    nav{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:82px;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #eee;
        box-shadow:0 8px 20px rgba(0,0,0,.08);

        max-height:0;
        overflow:hidden;
        transition:max-height .35s ease;
        z-index:1000;
    }

    nav.active{
        max-height:500px;
    }

    nav a{
        padding:18px 25px;
        border-bottom:1px solid #f2f2f2;
    }
     }