  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif; ;
                                                
}


html{
    scroll-behavior: smooth;
}

body{
    position: relative;

}

header{
    font-family: sans-serif;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1;
}

.logo{
    color: rgb(255, 255, 255);
}

.burger{
    display: none;
    transition: 0.4s;
}

.burger:active{
    transform: rotate(160deg);
}


#navBar {
    display: flex;
}

#navBar ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
#navBar ul li{
    list-style: none;
}

#navBar ul li a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    transition: 0.4s;
}

#navBar ul li a:hover{
    color:rgb(230, 51, 90);
    border-radius: 10px;
}

#navBar ul li a.current{
    color: rgb(230, 51, 90);
    border-radius: 3px;
}

#mobileNav{
    display: none;
}


.scrollUp{
    opacity: 0;
    z-index: 500;
    position: fixed;
    bottom: 50px;
    right: 20px;
    color: rgb(195, 26, 63);
    font-size: 50px;
    animation: loop 1s infinite linear;
    cursor: pointer;
}

.scrollUp.show{
    opacity: 1;
}


.contact{
    background-color: inherit;
    border: 1px solid silver;
    color: white;
    font-size: 18px;
    border-radius: 20px;
    padding: 8px 20px;
    box-shadow: 2px 3px 5px black;
    transition: 0.4s;
    text-decoration: none;
}

.contact:hover{
    transform: scale(1.09);
}

#home{
    height: 700px;
    width: 100%;
    background-color: rgb(36, 36, 36);
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    padding: 60px;
}

.mainText{
    z-index: 1;
    font-size: 35px;
    font-family: sans-serif;
    width: 70%;
}

#home img{
    max-width: 100%;
}

.welcome{
    font-size: 20px;
    color: rgb(230, 51, 90);
}

.orderBtn{
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 17px;
    background-color: rgb(195, 26, 63);
    border: 1px solid rgb(195, 26, 63);
    color: white;
    text-decoration: none;
    outline: none;
    border-radius: 20px;
    box-shadow: 2px 3px 5px black;
    transition: 0.4s ease;
}


.orderBtn:hover{
    background-color: rgba(230, 51, 90, 0.1);
}

#About{
    background-image: url(../imgs/eiliv-aceron-w0JzqJZYX_E-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    text-align: center;
    position:relative;
    color: white;
    padding-bottom: 70px;
}

#About h1{
    position: relative;
    color: rgb(195, 26, 63);
    text-shadow: 1px 2px 2px black;
    z-index: 2;
    padding: 30px 0px;
    font-size: 40px;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    top: 0;
    left: 0;
    z-index: 0;
}

.aboutContainer{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    z-index: 2;
}

.abouts{
    width: 300px;
    margin-bottom: 30px;
    background-color: rgba(31, 0, 7, 0.8);
    padding: 30px;
    border-radius: 10px;
    transition: 0.5s;
}

.abouts:hover{
    background-color: rgb(31, 0, 7);
    transform: translateY(-10px);
}

.abouts h2{
    color: rgb(195, 26, 63);
}

.abouts .icon img{
    margin-bottom: 20px;
}

.abouts .icon img{
    width: 50px;
    filter: invert(1);
}

/* menu section */
#Menu{
    background-color: rgb(42, 42, 42);
    text-align: center;
    color: rgb(195, 26, 63);
}

#Menu h1{
    padding: 30px 0px;
    font-size: 40px;
}

#Menu h3{
    color: rgb(195, 26, 63);
}

#Menu p{
    color: white;
}

.menuContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.menuDishes{
    background-color: rgb(80, 80, 80);
    width: 250px;
    height: 250px;
    margin: 40px;
    box-shadow: 2px 7px 5px black,
                -1px -2px 3px lightgray;
    border-radius: 50%;
    border: 2px solid rgb(32, 32, 32);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}
 
.menuDishes img{
    position: absolute;
    top: 0;
    width: 500px;
    /* height: 100%;  */
    transition: 1s;
}

.price{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.5s;
}

.menuDishes:hover  .price{
    transform: translateY(0%);
    opacity: 1;

}

.menuDishes:hover  img{
   transform: scale(1.09);
}

.order{
    background-color: rgb(46, 46, 46);
    border: 1px solid grey;
    border-radius: 20px;
    padding: 10px 25px;
    color: white;
    cursor: pointer; 
    transition: 0.3s;
}

.order:hover{
    background-color: rgb(24, 24, 24);
}

#testimonialSection{
    background-color: rgb(216, 117, 138);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

#testimonialSection h1{
    padding-top: 30px;
    font-size: 40px;
    color: rgb(29, 2, 8);
}

#testimonialsContainer{
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.testimonial{
    width: 250px;
    height: 320px;
    padding: 40px;
    box-shadow: 2px 3px 20px rgba(20, 2, 7, 0.5);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
    margin-top: 50px;
    text-align: center;
    cursor: default;
    transition: 0.4s ;
    background-color: white;
}

.testimonial:hover{
    background-color: rgb(230, 51, 90);
    color: white;
}

.testimonial:hover .stars{
    color: silver;
}

.testimonial img{
    width: 100px;
}

.testimonial .profile{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -70px;
    margin-bottom: 20px;
}

.testimonial .stars{
    margin-top: 40px;
    color: rgb(195, 26, 63);
}

.popupMenu{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(236, 230, 230);
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 20px;
    width: 800px;
    height: 500px;
    z-index: 1000;
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 2px 5px 10px black;
}

.popupMenu.show{
    display: flex;
    transform: translate(-50%, -50%);
}

@keyframes slideDown{
    from{
        opacity: 0;
        transform:  translate(-50%, -50%);
    }
    to{
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.popupMenu img{
    width: 100px;
}

.popupMenu .bike{
    width: 300px;
}

.popupForm{
    display: flex;
    align-items: center;
}

.popupCancel{
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: rgb(104, 13, 33);
    cursor: pointer;
    transition: 0.4s;
}

.popupCancel:hover{
    display: block;
    transform: rotate(180deg);
}

.popupForm textarea{
    resize: none;
    padding: 15px 15px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid transparent;
    box-shadow: 2px 3px 5px rgb(31, 4, 10);
    outline: none;
    transition: 0.5s;
}

.popupForm textarea:focus{
    border: 1px solid rgb(195, 26, 63);
}
.popupForm input{
    padding: 15px 15px;
    border-radius: 5px;
    outline: none;
    border: 1px solid transparent;
    box-shadow: 2px 3px 5px rgb(31, 4, 10);
    transition: 0.5s;
}

.popupForm input:focus{
    border-color: rgb(195, 26, 63);
}

.popupForm form{
    display: flex;
    flex-direction: column;
    margin-left: 70px;
    margin-bottom: 40px;
}

.popupForm button{
    padding: 20px;
    border-radius: 30px;
    border: none;
    background-color: rgb(195, 26, 63);
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 1px 2px 4px rgba(24, 3, 7, 1),
                -2px -3px 5px white;
}

.popupForm button:active{
    box-shadow: inset 3px 4px 5px rgb(41, 4, 12);
    transition: 0.6s;
}

footer .socialsContainer{
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(104, 13, 33);
    padding: 80px 0px ;
}

.report{
    display: flex;
}

.report a{
    color: rgb(216, 117, 138);
    padding: 0px 5px;
}

.socials{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.socials img{
    width: 50px;
    filter: invert(1);
    transition: 0.5s;
    margin: 0 15px;
    cursor: pointer;
}

.socials img:hover{
   transform: translateY(-10px) scale(0.9);
}

.copyright{
    text-align: center;
    color: white;
    padding: 30px;
    background-color: rgb(48, 6, 15);

}

.copyright h3{
    margin-bottom: 20px;
}

.copyright p{
    margin-top: 20px;
}

@media (max-width: 700px){
    #navBar{
        display: none;
    }

    #mobileNav{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        width: 80%;
        height: 100vh;
        z-index: 100;
        top: 0;
        left: 0;
        background-color: black;
        transform: translateX(-100%);
        opacity: 0;
        transition:0.8s;
    }

    #mobileNav.show{
        opacity: 1;
        transform: translateX(0%);
    }

    #mobileNav ul li{
        list-style: none;
        padding-bottom: 40px;
    }

    #mobileNav a{
        text-decoration: none;
        color: white;
        font-size: 20px;
    }

    #mobileNav a:hover{
        color: rgb(230, 51, 90);
    }

    .contact{
        background-color: rgb(195, 26, 63);
    }

    .burger{
        display: flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        cursor: pointer;
        z-index: 200;
    }
    
    .burger i{
        color: rgb(195, 26, 63);
        font-size: 40px;
    }

    #home{
        height: 100vh;
        display: flex;
        background-color: rgb(36, 36, 36);
        background-image: url(../imgs/dish.png);
        background-size: 400px;
        background-repeat: no-repeat;
        background-position: 250px 75%;
        align-items: center;
        color: white;
        padding: 10px;
    }
    .mainText{
        font-size: 20px;
        margin-bottom: 50px;
    }
    .orderMain{
        margin-top: 40px;
    }
    .dish img{
        display: none;
    }

    .popupMenu{
        width: 350px;
        height: 570px;
    }

    .popupForm{
        flex-direction: column;
    }

    .popupForm form{
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-bottom: 0px;
        margin-top: -50px;
    }

    .popupMenu img{
        margin-top: -50px;
    }

    .popupMenu .bike{
        width: 200px;
        margin-top: -20px;
    }
}

@keyframes loop{
    0%{
        transform: scale(1);
    }50%{
        transform: scale(1.1);
    }100%{
        transform: scale(1);
    }
}