/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#0e0e12;
    color:#fff;
}

/* HEADER */
.menu-header{
    text-align:center;
    padding:60px 20px 30px;
}

.menu-header h1{
    font-size:40px;
    letter-spacing:3px;
    color:#D4AF37;
}

.menu-header p{
    color:#ccc;
    margin-top:10px;
}

/* FILTER BUTTONS */
.menu-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin:30px 0;
}

.menu-tabs button{
    padding:10px 20px;
    border:none;
    background:#1c1c24;
    color:#fff;
    cursor:pointer;
    border-radius:30px;
    transition:0.3s;
}

.menu-tabs button:hover,
.menu-tabs button.active{
    background:#D4AF37;
    color:#000;
}

/* MENU GRID */
.menu-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    padding:20px 8%;
    padding-bottom:60px;
}

.menu-item{
    background:#1a1a22;
    padding:20px;
    border-radius:15px;
    transition:0.3s;
}

.menu-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.menu-item h3{
    display:flex;
    justify-content:space-between;
    font-size:18px;
    margin-bottom:10px;
    color:#D4AF37;
}
