
/* ================= GLOBAL ================= */

body{
  margin:0;
  background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh6kfNy14mnQ0Egs_1rKXITpRS43DBonNoM_gkwRyIfcZaKaR29IJaZaRCmfOZov6fZKp5N6BShhzNxmKRYuYHOmF8BtLehc4Wjl5cAfD2LbrwGXL8xyJbhIPvHNXOW0BzNvp1YCjxReXBN1PafKyOVwR7gIgJzknAIQIV83EC40M5pQx8o57Omd9hpNdY/s16000/bg1.png');
  background-size: cover;
  color:#f5f5f5;
  font-family:"Inter",sans-serif;
}

.menu-page{
  padding:100px 6%;
}

/* ================= HEADER ================= */

.menu-header{
  text-align:center;
  margin-bottom:70px;
}

.menu-header span{
  letter-spacing:4px;
  font-size:13px;
  color:#caa45f;
}

.menu-header h1{
  font-family:"Playfair Display",serif;
  font-size:48px;
  margin:20px 0;
}

.menu-divider{
  width:70px;
  height:1px;
  background:#caa45f;
  margin:auto;
}

/* ================= LAYOUT ================= */

.menu-container{
  display:flex;
  gap:60px;
}

/* ================= SIDEBAR ================= */

.menu-sidebar{
  width:280px;
  border-right:1px solid rgba(202,164,95,0.3);
  padding-right:25px;
}

.menu-sidebar ul{
  list-style:none;
  padding:0;
}

.menu-sidebar li{
  padding:12px 0;
  cursor:pointer;
  letter-spacing:1px;
  font-size:14px;
  transition:0.3s;
  display:flex;
  justify-content:space-between;
}

.menu-sidebar li:hover,
.menu-sidebar li.active{
  color:#caa45f;
}

/* ================= CONTENT ================= */

.menu-content{
  flex:1;
}

.menu-category{
  display:none;
}

.menu-category.active{
  display:block;
}

.category-title{
  font-family:"Playfair Display",serif;
  font-size:28px;
  margin-bottom:40px;
  color:#caa45f;
}

/* ================= MENU ITEM ================= */

.menu-item{
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.menu-item h3{
  margin:0 0 6px;
  font-size:17px;
}

.menu-item p{
  margin:0;
  font-size:14px;
  color:#aaa;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .menu-container{
    flex-direction:column;
  }

  .menu-sidebar{
    width:100%;
    border-right:none;
    border-bottom:1px solid rgba(202,164,95,0.3);
    margin-bottom:30px;
  }

  .menu-sidebar ul{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
  }

  .menu-sidebar li{
    border:1px solid rgba(202,164,95,0.3);
    padding:8px 12px;
  }
}
