* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 230vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Pictures/siomaipic.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);

}

/* Navigation bar */

.menu_bar {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #FCE604;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1;
  }

.menu_bar button {
    margin-left: 10px;
    padding: 9px 25px;
    background-color: #AE1526;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    
  
  }

  .menu_bar button:hover {
    background-color: #135E3C;
  }
  
  .logo {
    cursor: pointer;
    margin-right: auto;
    background-color: #FCE604;
  }
  
  
  .menu_bar ul {
    display: flex;
    list-style: none;
  }
  
  .menu_bar ul li {
    padding: 10px 30px;
    position: relative;
    font-weight: bold;
  }
  
  .menu_bar ul li a {
    text-decoration: none;
    font-size: 17px;
    color: #135E3C;
  }
  
  .menu_bar ul li a:hover {
    transition: all 0.3s ease 0s;
    color: #AE1526;
  }
  
  .menu_bar button {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
  }
  
  .dropdown_menu {
    visibility: hidden; 
    opacity: 0; 
    display: none;
    border-radius: 5px;
    transition: all 0.3s ease, visibility 0.3s ease;
    
  }
  
  .menu_bar ul li:hover .dropdown_menu {
    visibility: visible; 
    opacity: 1; 
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
  }
  
  .dropdown_menu ul {
    display: block;
    list-style: none;
   
  }
  
  .dropdown_menu ul li{
    
    width: 150px;
    padding: 10px;
    text-align: center;
    font-weight: 100;
  }
  
  .dropdown_menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #8d8d8d;
  }

/* Reviews */

.wrapper {
    margin-top: 15vh;
    width: 60%;
    background-color: white;
    border-radius: 20px;
    padding: 30px 40px;
}


.wrapper h1 {
    
    font-size: 30px;
    text-align: center;
    color: #AE1526;
}

.wrapper p {
    margin-top: 15px;
    text-align: justify;

}
.box-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.box-items .box {
    width: 300px;
    height: 300px;
    background: #fff;
    margin: 10px;
    padding: 20px;
    border: solid 1px #ccc;
    border-radius: 10px;
    box-shadow: none;
    transition: 0.3s;
}

.name-and-rating {
    display: flex;
    padding: 3px;
    
}

.name-and-rating .name {
    margin: 5px 60px 0 0;
    font-size: 15px;
    font-weight: 600;
    
}



.name-and-rating .rating {
    font-size: 15px;
    font-weight: 100;
    
}
.picture .user-picture {
    height: 30px;
    border-radius: 100%;
    margin-right: 10px;
}

.review {
    padding: 3px;
    align-items: justify;
}

.review p {
    font-size: 16px;
    margin-top: 30px;

}

.date h2 {
    font-size: 15px;
    margin-top: 15px;
    font-weight: 100;
    color: gray;

}


.wrapper button {
    width: 30%;
    height: 45px;
    background-color: #AE1526;
    border: none;
    color: white;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block; 
    margin: 0 auto;
}

.wrapper button:hover {
    background-color: white;
    border: solid 2px #AE1526;
    color: #AE1526;
}

/*FAQ*/

.wrapper2 {
    width: 60%;
    background-color: white;
    border-radius: 20px;
    padding: 30px 40px;
    margin-top: 10vh;
}

.wrapper2 h1 {
    font-size: 30px;
    text-align: center;
    color: #AE1526;
}

.wrapper2 p {
    margin-top: 15px;
    text-align: justify;

}

.box-items .box .question h2 {
    color: #135E3C;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;

}

.wrapper2 button {
    width: 30%;
    height: 45px;
    background-color: #AE1526;
    border: none;
    color: white;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block; 
    margin: 0 auto;
}

.wrapper2 button:hover {
    background-color: white;
    border: solid 2px #AE1526;
    color: #AE1526;
}

/*Gallery*/

.wrapper3 {
    width: 60%;
    background-color: white;
    border-radius: 20px;
    padding: 30px 40px;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.wrapper3 h1 {
    font-size: 30px;
    text-align: center;
    color: #AE1526;
}

.wrapper3 p {
    margin: 15px 0 15px 0;
    text-align: justify;
    

}

.gallery {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
    gap: 10px;
}

.gallery-item{
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px;
    font-size: 30px;
    text-align: center;
}

.gallery-item .gallery-picture {
        height: 300px;
    }

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    margin: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;

}

.content {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.6s;
    text-decoration: none;
}

.content h1 {
    color: white;
    font-size: 30px;
    text-align: center;
}
.content:hover {
    opacity: 1;
}

.navigationbtn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.navigationbtn button {
    border: none;
    color: #AE1526;
    

}
