@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;600;800&family=Orbitron:wght@900&family=Poppins:wght@400;600;800&family=Roboto+Mono:wght@300;400;500;600;700&family=Roboto:ital,wght@0,500;1,500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body
{
    font-family: 'Karla', sans-serif;
    font-family: 'Orbitron', sans-serif;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

#hero
{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
#hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/restaurant.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    filter: brightness(50%);

}
#hero-Content
{
    position: absolute;
}
#hero-Content h1
{
    color:#fff;
    font-size: 2.8rem;
    text-shadow: 3px 3px 3px #000;
}
#hero-Content h2
{
    color:#fff;
    font-size: 2rem;
    font-family: cursive;
    margin-top: 1rem;
    margin-bottom: 4rem;
    
}
#hero-Content a
{
    color:#fff;
    padding: 8px 16px 8px 16px;
    border: 1px solid orange;
    background: rgb(0,0,0, 0.6);
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.5rem;
    
}
#hero-Content a:hover{
    background-color: chocolate;
    color:black;
}
    /* Header Section Nav Bar */
#header
{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 70px;
    line-height: 70px;
}
#navBar
{
    display: flex;
    justify-content: space-around;
    background-color: rgb(0,0,0,0.5);
}
#navBar h1
{
    color:#fff;
    font-size: 1.8rem;
    text-shadow: 3px 3px, 3px #000;
    font-family: cursive;
}
#navBar ul{
    display: flex;

}
#navBar ul li{
    list-style: none;
    padding: 3px 15px 3px 15px;
}
#navBar ul li a{
    text-decoration: none;
    color:#fff;
    font-size: 1.1rem;

}
#navBar ul li:hover{
    
    border-radius: 5px;
    background-color: orange;
    cursor: pointer;
}
#phone a{
    text-decoration: none;
    color:#fff;
    font-size: 1.1rem;
    padding: 3px 15px 3px 15px;
    border: 1px solid orange;
    border-radius: 5px;
}
#mobile-Menu
{
    display: none;
    height: 40px;
    line-height: 40px;
    background-color: magenta;

}
#mobile-Menu ul{
    display: flex;
    justify-content: center;
}
#mobile-Menu ul li
{
    list-style: none;
    padding: 0 5px 0 5px;
}
#mobile-Menu ul li a{
    text-decoration: none;
    color:#fff;
}
@media screen and (max-width:768px)
{
    #header
    {
        position: absolute;
    }
    #mobile-Menu
    {
        display: block;
    }
    #navBar ul
    {
        display: none;
    };
    html{
        font-size: 95%;
    }
    #menu-Row, #about-Row
    {
        flex-wrap: wrap;
        padding: 0 10px 0 10px;
    }
}
@media screen and (max-width:445px){
    html{
        font-size: 70%;
    }
    #menu-Row
    {
        flex-wrap: wrap;
        padding: 0 10px 0 10px;
    }
}
@media screen and (max-width:320px){
    html{
        font-size: 50%;
    }
    #about-Img
    {
        width: 220px;
        height: 220px;
        
    }
    #menu-Row
    {
        flex-wrap: wrap;
        padding: 0 10px 0 10px;
    }
}

#menu
{
    padding: 25px 0 25px 0;
}
#section-Menu
{
    padding: 25px 0 25px 0;
    text-align: center;
    font-size: 2rem;
    font-family: verdana;

}
#menu-Row
{
   display: flex;
   padding: 0 100px 0 100px;

}
#menu-Col
{
    box-shadow: 2px 2px 2px #bbb;
    border: 1px solid #bbb;
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    flex: 1;
}
#menu-Col h2{
    background-color: rgb(171, 3, 3);
    color: #fff;
    text-align: center;
    padding: 5px;
    font-family: cursive;
    
}
#images
{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid orange;
}
#images img
{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;

}
.box
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 5px;
}
#Chef
{
    padding: 25px 0 25px 0;
}
#Chef h1
{
    text-align: center;
}
#Chef-Row
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}
.Chef-Col
{
    text-align: center;
    padding: 10px;
    margin: 5px;
}
.img
{
    width: 200px;
    height: 250px;
    margin: auto;
}
.img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
#about
{
    padding: 25px 0 25px 0;
}
#about h1
{
    text-align: center;

}
#about-Row
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 100px 0 100px;
}
.about-Col
{
    flex: 1;
}
#about-Img
{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: auto;
}
#about-Img
{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: fill;
}
.about-Col h1{
    text-align: center;
    font-family: cursive;

}
.about-Col p{
    text-align: justify;
    font-weight: 400;

    
}
#contact
{
    padding: 25px 0 25px 0;

}
#contact h1{
    align-items: center;
}
#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: #292929;
    margin: 10px;
}
.contact-Col p a{
    text-decoration: none;
    color: #292929;
}
#social-Icon a
{
    color: orange;
    margin: 3px;
}
.contact-Col form{
    display: flex;
    flex-direction: column;
    background-color: orange;
    width: 70%;
    padding: 20px 40px 20px 20px;

}
.contact-Col form h2
{
    text-align: center;
    font-family: cursive;

}
.contact-Col form input{
    width: 100%;
    height: 18pt;
    padding: 5px;
}    
    
.contact-Col form textarea{
    width: 100%;
    padding: 5px;
}
.contact-Col form button{
    margin: auto;
    padding: 10px;
    color: #fff;
    background-color: rgb(55, 36, 1);
    border: 1px solid orangered;
    border-radius: 10px;
}
