
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
/* .Resturant-conTainer
{

} */
body
{
    font-family: "Roboto", sans-serif;
    background-color: lightpink;
}
.navBar
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
    background-color: yellow;
}
.navLogo img
{
    width: 50px;
    height: 50px;
}
.mainMenu
{
    display: flex;
}

.mainMenu li
{
    list-style: none;
}

.mainMenu li a{
    text-decoration: none;
    margin-left: 30px;
    font-size: 18px;
    font-weight: 600;
}
.mainMenu li a:hover{
    color: red;
    
}
.btnOrder button
{
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btnOrder button:hover
{
    color: red;
    background-color: rgb(219, 219, 2);
    box-shadow: 3px 3px 3px rgba(0,0,0,0.4);

}
.heroSection
{
    width: 100%;
    height: 1000px;
    background: url("../images/banner.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.heroSection img
{
    padding-left: 150px;
    
}

.heroSection h1
{
    text-align: center;
    font-size: 80px;
    color: red;
}
.heroSection h1 span
{
    color: yellow;
    font-family:cursive;
    font-size: 100px;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.4);
}
.aboutFastFood
{
    width: 75%;
    height: 80vh;
    margin: 30px auto;
    background: url("../images/paraBackground.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0 50px 0 50px;
}
.aboutFastFood h1
{
    text-align: center;
    color: red;
    font-size: 50px;
    font-weight: 600;
    padding: 30px 0;

}

.aboutFastFood p
{
    text-align: justify;
    font-size: 18px;
    padding: 40px;
    font-weight: 600;
    line-height: 1.9;
    color: lightcoral;

}

.Foods
{
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;


}
.Foods .FoodCard
{
    width: 300px;
    height: 500px;
    background-color: lightskyblue;
    box-shadow: 4px 4px 5px rgba(0,0,0,0.5);
    border-radius: 30px;
    margin: 0 35px;

}
.Foods .FoodCard img{
    width: 100%;
    height: 50vh;
    padding: 10px;
    border-radius: 30px;
}
.Foods .FoodCard h2
{
    color: whitesmoke;
    text-align: center;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}
.Foods .FoodCard p
{
    text-align: justify;
    color: gray;
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
}

footer
{
    background-color: black;
    width: 100%;
    height: 120px;
    margin-top: 50px;
}

footer h1
{
    text-align: center;
    color: yellow;
    padding-top: 30px;

}

footer p
{
    color: white;
    text-align: center;
    font-size: 16px;
    
}
#contact{
    padding: 25px 0 25px 0;
    border-radius: 100px;
    border-color: aqua;
}
#contact_row{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px 0 100px;
    flex-wrap: wrap;
}
.contact_col{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.contact_col p,h3{
    font-weight: bold;
    color: lightskyblue;
    margin: 10px;
}
.contact_col p a{
    text-decoration: none;
    color: lightblue;
}
#social a{
    color: blue;
    margin: 3px;
}
.contact_col form{
    display: flex;
    flex-direction: column;
    background-color: lightblue;
    width: 70%;
    padding: 20px 40px 20px 20px;
}
.contact_col form h2{
    text-align: center;
    font-family: cursive;
}
.contact_col form input{
    width: 95%;
    height: 17pt;
    padding: 5px;
    margin: 5px;
}
.contact_col form input textarea{
    width: 120%;
    height: 17pt;
    padding: 5px;
    margin: 5px;
}
.contact_col form button{
    margin: auto;
    padding: 10px;
    background-color: lightseagreen;
    border: 1px solid blue;
    cursor: pointer;    
}
