/* set page defaults and reset any possible defaults */
:root{
    --EspressoColor: rgba(85,50,55,1);
}
body, html{
    height: 100vh;
}
body{
    margin: 0;
    background-color: rgb(216,198,184);
    display: grid;
    grid-template-columns: 15% 35% 35% 15%;

    grid-template-areas: 
        "header header header header"
        "stage stage stage stage"
        ". main main aside"
        "footer footer footer footer";
}
/* setup the wireframe template */
/*location page styles*/
#location-img{
 }

/* header Styles */
header{
    grid-area: header;
    height: 235px;
    background-image: url("Images/header-background.jpg");
    background-size: cover;
}
.stage{
    grid-area: stage;
    background-color: #D8C6B8;
    margin-left: auto;
    margin-right: auto;
}   
main{
    grid-area: main;
    background-color: #D8C6B8;
    padding: 5px;
    text-align: left;
}   
aside{
    grid-area: aside;
    background-color: #D8C6B8;
    border-color: #000;
    text-align: center;
}   
   
footer{
    grid-area: footer;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.header-logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* content styles */


h1{
    color: #CF1C44;
    font-family: "Goudy Old Style", Bold;
    font-size: 30px;
    
}

p{
    font-family: "Klinic Slab";
}
/* Location page styles */

.row{
    clear: both;
    width: 100%;
}
.dish{
    float: left;
    width: 350px;
    height: 150px;
    padding: 10px;
}

/* Navigational Stylings */

nav{
    background-color: var(--EspressoColor);
    width: 100%;
    height: 35px;
    font-weight: 400;
    font-size: 22px;

}
header::after{
    content: '';
    display: table;
    clear: both;
}
ul#navbar-container{
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
    left: 0;
    overflow: hidden;
    
}
.navbar-link {
    display: inline-block;
    padding: 5px;
    margin-left: 50px;
}
.navbar-link a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    
}
.navbar-link a:hover{
    background-color: #111;
    color: white;
}
.active{
    background-color: #4CAF50;
}

/* Stylings for home page */

/* carasole */

.main-banner{
    margin: auto;
    width: 1200px;
    height: 400px;
    overflow: hidden;
    background-color: #FFF;
    position: relative;
}
.main-banner .imgban{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    transition: all ease-in-out 500ms;
    -webkit-transition: all ease-in-out 500ms;
    -moz-transition: all ease-in-out 500ms;
    -o-transition: all ease-in-out 500ms;
}

.main-banner #imgban3{
    background-image: url(Images/food-carousel-04.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-banner #imgban2{
    background-image: url(Images/food-carousel-06.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-banner #imgban1{
    background-image: url(Images/food-carousel-00.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.block:hover{
	box-shadow: 0 0 15px #333;
}
.sitemap{
    font-weight: 600;
    font-size: 26px;
    
}