@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
  height: 100%; 
  margin: 0;
  padding: 0;


}


body{
  background-color: black;
  background-image: url('../images/menu-background1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
   /* background-attachment: fixed; */
  /* background-size: 100% 100%; */
  min-height: 100vh; 
  overflow-x: hidden; 
  overflow-y: auto;
 
}

.menu {
  margin-top: 140px;
  text-align: center;
   font-size: 80px;
  color: #E9C261;
  letter-spacing: 2.5px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 800;
  font-style: normal;

}

.subtitle{
  text-align: center;
  font-size: 20px;
  color: #fffcf2;
  margin-top: 5px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  
 
}



.menu-container{
  margin: 50px auto;
  width: 80%;
  text-align: center;
  padding: 20px;
  

}

.categories {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}


.category {
  position: relative;
  cursor: pointer;
  width: 200px;
  margin: 10px;
  transition: transform 0.3s;
}

.category:hover {
  transform: scale(1.05);
}


.categories img{
  
  width: 130px;
  height: 130px;
  border-radius: 50%;

  transition: transform 0.3s, filter 0.3s;


}

.category:hover img { 
  transform: scale(1.1);
  filter: brightness(0.8); 

}


h2 {
  font-size: 1.3em;
  color: #fffcf2;
  margin-top: 20px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  
}


.menu-list {
  display: none; 
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%; 
  background-color: #fffcf2;
  color: black;
  padding: 10px;
  list-style-type: none;
  margin: 0;
  border-radius: 5px;
  text-align: left;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.category:hover .menu-list {
  display: block; 
}


.menu-list li {
  padding: 5px 0;
  border-bottom: 1px solid #E9C261;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.menu-list li:last-child {
  border-bottom: none;
}





