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




/* typography and icons */
#logo-block{
    display:grid;
    /* background-color: #c5c5c5; */
    grid-gap: 0px;
    width: 347px;
    height:100%;
    grid-template-areas: 
        'name icon'
        'slogan icon';
    
}

header h1{
    grid-area: name;
    color: #ffffff;
    padding: 0px;
    margin-bottom: 0px;
    font-size: 40px;
    font-family: 'Suez One', serif;
    font-weight: 400;
}
header h2{
    grid-area: slogan;
    color: white;
    font-weight: 100;
    font-size: 15px;
}
#food-icon{
    grid-area: icon;
    align-self: end;
    /* background-color: #df430f;   */
    height: 65px;
}

footer h1{
    text-align: center;
    font-weight: 100;
    font-size: 25px;
    margin-bottom: 25px;
}

i{
    font-size: 15px;
    cursor: pointer;
}

/* layout */

main, header{
    width: 60vw;
    min-width: 450px;
    margin: 0 auto;
}

main{
    position: relative;
    min-height: 100vh;
    display:flex;
    flex-direction:column;
}

header{
    position: relative;
    margin-top: 60px;
    background: url("images/restaurant-social-bar-pxhere.jpg");
    background-repeat: no-repeat;
    background-position: center 70%;
    background-size: cover;
    border-radius: 15px;
   /*width: 600px;*/
    height: 150px;
    padding: 18px 25px;
}

footer{
    margin: 30px 0;
}


/* menu */

.menu{
    width: 100%;
    display: flex;
    flex:1;
    flex-direction:column;
    padding: 10px;
}

.item{
    width: 100%;
    padding-bottom: 40px;
    padding-right: 15px;
    margin-top: 35px;
    display:flex;
    justify-content: space-between;
    border-bottom: 1px solid #c5c5c5;
}

.item-image{
    width:100px;
    height:90px;
    text-align: right;
    font-size: 75px;
}

.item-info{
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    width:370px;
    margin-left: 10px; 
}

.item-name, .item-price{
    font-family: 'Suez One', serif;
    font-size: 20px;
}

.add-btn{
    width:60px;
    min-width: 60px;
    margin-left: 10px;
    height:60px;
    background-color: #fefefe;
    border:1.5px solid #091095;
    color: #091095;
    border-radius: 30px;
    cursor: pointer;
    font-size: 25px;
    font-weight: 100;
}

.menu-input-area {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* order area */

#order{
    display:flex;
    flex-direction:column;
    justify-content: space-between;

}
.order-item{
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    margin-bottom: 15px;
}
.remove-btn{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300px;
    background-color: #ffffff00;
    border: none;
    margin:0 10px;
    cursor: pointer;
}
#order-total-area{
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    margin-bottom: 25px;
    border-top: 2px solid rgb(142, 142, 142);
    font-family: 'Suez One', serif;
    font-size: 20px;
}
.order-total-label{
    margin-top: 15px;
    font-family: 'Suez One', serif;
    font-size: 20px;
}

#order-total{
    margin-top: 15px;
    font-family: 'Suez One', serif;
    font-size: 20px;
}
#order-btn{
    background-color: #091095;
    border: none;
    color: white;
    padding: 10px 19px;
    border-radius: 10px;
    width: 100%; 
    padding:30px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

/* payment modal */
#payment-modal{
    z-index: 15;
    position:absolute;
    top: 33vh;
    width: 60vw;
    min-width: 450px;
    margin: 0 auto;
    background-color: #ffffff;    
    padding: 30px 50px 50px 50px;
    border-radius: 10px;
    box-shadow: 0px 5px 16px 1px rgba(89, 89, 89, 0.55);
}

#payment-modal h1{
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
}

#name, #card-no, #cvv, #submit-btn{
    width: 100%;
    display:block;
    font-size: 15px;
    padding: 20px;
    margin: 10px 0;
    
}
#submit-btn{
    margin-top: 35px;
    background-color: #df430f;
    border-radius: 10px;
    color: #fefefe;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.thank-you-message{
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    background-color: rgba(127, 255, 212, 0.385);
    padding: 35px;
    margin: 35px auto;
}

/* utility */
.hidden{
    display: none;
    visibility: hidden;
}

