header{
background-color: #000000;
height: 11vh;
box-shadow: 2px 2px 5px 5px rgba(29, 41, 25, 0.137);
}
nav{
display: flex;
align-items: center;
}
*{
margin: 0 auto;
}
header, nav, main, footer{
width: auto;
padding: 10px 20px;
box-sizing: border-box;
}
.sticky {
padding: 10px;
text-align: right;
position: sticky;
top: 0; 
z-index: 100; 
height: 10vh;
}
.logos{
display: flex;
justify-content: space-between;
margin-left: 25px;
}
.logo{
width: 45px;
height: 45px;
}
.evergane{
color: #7FFF00;
font-weight: 1000;
font-size: 180%;
padding: 5px;
}
nav a#menu-btn{
background-color: #7FFF00;
color: #000000;
}
nav a#menu-btn:hover{
border: 1px solid #7FFF00;
background-color: transparent;
color: #7FFF00;
}
nav a#login-button{
color: blue;
background-color: #00c3ff2d;
border: 1px solid blue;
}
nav a#login-button:hover{
color: white;
background-color: blue;
border: 2px solid rgb(78, 78, 255);
}
nav{
margin-top: -5px;
margin-bottom: 8px;
}
nav a{
color: #7FFF00;
text-decoration: none;
font-size: 75%;
font-weight: 900;
padding: 5px;
margin-inline: 15px;
text-transform: uppercase;
}
nav a:hover{
background-color: #7FFF00;
color: black;
}
/*MENU BODY*/
.menu{
background-color: rgb(255, 255, 255);
height: inherit;
}
.menu-box {
margin-top: 5px;
padding: 5px 90px;
width: auto;
background-color: rgb(255, 255, 255);
}
.menu-box h1{
color:#ff0000;
font-weight: 200px;
font-size: xx-large;
margin-top: 80px;
margin-bottom: 50px;
text-align: center;
}
.imagem{
width: auto;
max-height: 10vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.589), rgba(0, 0, 0, 0.596)), url('img/veganfood.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
padding: 80px 80px;
}
.imagem h1{
color: #ffffff;
text-align: center;
font-size: 60px;
}
.imagem p{
color: #ffffff;
text-align: center;
font-size: medium;
}
/* ICONS PARA MENU*/
.icons-container{
display: flex;
align-items: center;
justify-content: center;
margin-top: 30px;
width: fit-content;
}
.icon-container{
text-align: center;
margin: 0 10px;
}
.icon{
width: 140px;
height: 140px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 5px;
}
#promo-icon{
background-color: #7FFF00;
}#entrada-icon{
background-color: #7FFF00;
}#prato-icon{
background-color: #7FFF00;
}#salada-icon{
background-color: #7FFF00;
}#sobremesa-icon{
background-color: #7FFF00;
}#bebida-icon{
background-color: #7FFF00;
}
#promo-icon:hover{
background-color: rgb(255, 37, 37);
}#entrada-icon:hover{
background-color: rgb(255, 183, 49);
}#prato-icon:hover{
background-color: rgb(151, 69, 228);
}#salada-icon:hover{
background-color: #b4ff68;
}#sobremesa-icon:hover{
background-color: rgb(126, 37, 15);
}#bebida-icon:hover{
background-color: rgb(216, 100, 47);;
}
.icon img{
max-width: 80%;
max-height: 80%;
}
.icon a{
text-decoration: none;
}
.button{
color: #000000;
border: none;
margin-top: 10px;
cursor: pointer;
display: inline-block;
font-size: 20px;
font-weight: 700;
}
.button:hover{
color: blue;
text-decoration: none;
}
/*PEDIDOS*/
.category-item .option-label{
display: flex;
align-items: center;
margin-bottom: 10px;
cursor: pointer;
padding: 2px;
border: 1px solid rgb(173, 173, 173);
border-radius: 30px;
background-color: white;
box-shadow: 2px 2px 2px 2px rgba(177, 177, 177, 0.137);
width: 285px;
}
.category-item .option-label:hover{
box-shadow: 2px 2px 5px 5px rgba(110, 110, 110, 0.137);
}
input[type="radio"]{
display: none;
}
.option-label{
display: flex;
align-items: center;
}
.food-image{
width: 100px;
height: 100px;
margin-right: 10px;
border-radius: 30px;
}
.food-info {
display: flex;
flex-direction: column;
}
.food-name {
font-size: 18px;
font-weight: bold;
}
.food-description {
margin-top: 5px;
font-size: small;
}
.price {
margin-top: 5px;
font-weight: bold;
color: blue;
}
.price-cancelled{
color: gray;
text-decoration: line-through;
font-weight: 100;
margin-left: 5px;
}
.nome-categoria {
font-weight: bold;
margin-top: 40px;
margin-bottom: 10px;
font-size: x-large;
}
.category-container {
display: flex;
flex-wrap: wrap;
}
.category-item {
flex: 0 0 18%;
margin: 1%;
}
/*FORM*/
#pedido-form {
display: none;
position: fixed; 
top: 60%;
left: 80%;
transform: translate(-50%, -50%);
background-color: rgba(250, 250, 250, 0.836);
padding: 20px;
border: 2px solid #6e6e6e;
border-radius: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1;
width: 250px;
}
#pedido-form input, #pedido-form select{
margin-bottom: 5px;
border: 1px solid #858585;
height: 25px;
width: 100%;
}
.form-pedido h3{
text-align: center;
font-weight: bolder;
margin-bottom: 20px;
margin-top: 15px;
}
#pedido-form textarea{
margin-bottom: 5px;
border: 1px solid #858585;
height: 50px;
width: 100%;
}
#close-button{
position: absolute;
top: 15px;
right: 15px;
cursor: pointer;
font-size: 15px;
}
#close-button:hover{
color: red;
}
.form-button {
margin-top: 15px;
background-color: blue;
color: white;
font-size: medium;
padding: 7px;
width: 100%;
}
.form-button:hover{
background-color: rgb(23, 58, 255);
color: white;
}
/*FOOTER*/
.footer{
background-color: #000000;
color: #7FFF00;
display: flex;
align-items: center;
justify-content: space-between;
padding: 2px;
font-size: large;
font-weight: 900;
height: 80px;
}
footer a{
text-decoration: none;
}
.icons{
display: flex;
justify-items: left;
gap: 20px;
}
.footer-text {
text-align: right;
}