:root{
    --fontblack: rgba(0, 0, 0, 0.7);
    --lightgray: rgba(0, 0, 0, 0.2);
    --orange: rgb(255, 136, 57);
    --darkorange: rgb(255, 102, 0);
    --lightorange: #fdfbe7;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding:0;
    color: var(--fontblack);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}



/* --------------------Head ------------------*/

#Head{
    background-color: var(--orange);
    width: 100%;    
    display: flex;
    justify-content: center;
}

.header-content{
    width: 95%;
    color: var(--lightorange);
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}
.header-content p{
    font-size: 25px;
    text-decoration: underline;
    text-align: center;
    margin: auto;
}
.header-content img{
    height: 80px;
    cursor: pointer;
}
.basket-btn{
    cursor: pointer;
}


/* ---------------------Site------------ */

#Site{
    display: flex;
}

/* ------------------------Restaurant--------------- */

#Restaurant-site{
    width:100%;  
    position: relative;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.image-head{
    background-image: url('img/wok_head.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
}
.image-circle-container{
    display: flex;
    justify-content: center;
}




.restaurant{
    width: 90%;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -50px;
    
}
.flex-grow{
    flex: 1;
    flex-grow: 1;
}

.restaurant h2{
    display: flex;
    justify-content: center;
    align-items: center;    
    font-size: 35px;   
    padding-left: 2%;     
}

.image-circle{
    background: white;
    background-image: url('img/paradies_logo.png');
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid var(--lightgray);
    
    position: relative;
    top: -50px;    
}

.infos{
    display: flex;
    justify-content: center;
    align-items: center;    
}
.info-i{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 30px;
    border:1px solid var(--lightgray);
    border-right: 0px;
    padding: 10px;
    cursor: pointer;
    
}
#Info-heart{
    background-image: url('img/heart.png');
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border:1px solid var(--lightgray);
    padding: 10px;
    cursor: pointer;
    transition: background-image 120ms ease-in-out;
}
#Info-heart:hover{
    background-image: url('img/heart_red.png');
}



/* -----Search-bar  */

.search-bar{
    background-color: var(--lightorange);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    margin-top: -50px;
}
.search-bar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}
.search-bar a{
    color: var(--fontblack);
    text-decoration: none;
    font-size: 20px;
}


/* -------Meals */

.meals-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    margin-top: 20px;
}
.categories-head{
    display: flex;
    flex-direction: column;  
    width: 100%;    
    height: auto;
    background: var(--lightorange);
    font-size: 30px;
    font-weight: 600;        
}
.categories-head p{
    padding: 20px;
    margin: 0;
}
.categories-head img{
    object-fit: cover;
    object-position: center;
    height: 150px;
    width: 100%;
    opacity: .8;
}


/* Meal box */

.meal-box{
    width: 100%;
    min-height: 150px;
    border: 1px solid var(--lightgray);
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    transition: box-shadow 200ms ease-in-out;
}
.meal-box:hover{
    box-shadow: 3px 3px 7px var(--lightgray);
}

.meal-text-price{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 20px;
    font-size: 25px;
}
.description{
    font-size: 17px;
}
.price{
    color: var(--orange);
}

.plus-btn{       
    height: 40px;
    width: 40px;       
    border-left: 1px solid var(--lightgray);
    border-bottom: 1px solid var(--lightgray);
    cursor: pointer;   
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.plus-btn:hover img{
    filter: invert(0);
}
.plus-btn img{
    filter: invert(0.5);
    transition: filter 120ms ease-in-out;
}


/* ------------------Warenkorb Basket -------------------*/

.d-none{
    display: none !important;
}

#Basket{
    background: white;
    position: fixed;
    top: unset;
    z-index: 10;
    right: 0;
    height: 100%;
    width: 20%;
    border-left: 1px solid var(--lightgray);
    box-shadow: -3px 0px 10px var(--lightgray);
    display: flex;
    flex-direction: column;
    align-items: center;
    
}


#Basket-content{
    width: 90%;
    display: flex;
    flex-direction: column;
}
.placeholder p{
    text-align: center;
}
.basket-row{    
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.basket-row div:nth-child(1){
    width: 20px;
    margin-right: 10px;
}
.basket-row div:nth-child(2){
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.basket-row div:nth-child(3),
.basket-row div:nth-child(4){
    min-width: 25px;
}
.basket-row div:nth-child(5){
    display: flex;
    justify-content: flex-end;
    min-width: 65px;
    margin-right: 10px;
}
.basket-row div:nth-child(6){
    width: 20px;
}



.btn{
    font-size: 20px;
    width: 25px;
    height: 25px;
    border: 1px solid var(--lightgray);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.img-trash{
    height: 20px;
    cursor: pointer;
}

#Basket hr{
    width: 90%;
}

.row{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.bold{
    font-weight: bold;
}
#Minimum{        
    text-align: center;
}
.order-btn{
    background-color: var(--orange);
    font-size: 20px;
    border: none;
    cursor: pointer;
    padding: 20px 30px;
    box-shadow: 0px 0px 8px var(--lightgray);
    transition: background-color 120ms ease-in-out;
}
.order-btn:hover{
    background-color: var(--darkorange);
}

.alert-after-order{
    font-size: 30px;
    text-align: center;
}


/* --------------------------Footer-------------------------- */

footer{
    color: white;
    font-size: 20px;
    background-color: var(--fontblack);
    width: 100%;    
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 50px;
}