/*CSS DOCUMENT*/

html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;}

img{
    width: 100%;
}


/*Basic style for all pages.*/
body{
    background-color: #fafafa;
    color: #1e1e1e;
    line-height: 140%;
    font-family: fenwick, sans-serif;
    font-style: normal;
    font-weight: 300;
}


/*Fonts.*/
h1{
    padding: 3rem 0rem 1rem;
}

h2{
    color: #fafafa;
    font-family: glodok, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    line-height: 140%;
}

h3{
    font-family: glodok, sans-serif;
    font-style: normal;
    font-weight: 400;
    margin: 1rem 0rem 1rem;
    font-size: 1.5rem;
}

p{
    margin: 1rem 0rem 1rem;
}

ul{
    list-style-type: none;
    overflow: hidden;
}


/*Navigation bar.*/
.logo{
    max-width: 10em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.navbar ul{
    text-align: center;
    padding: auto;
    margin: auto;

}

.navbar li{
    display: inline-block;
}

.navbar a{
    display: block;
    color: #1e1e1e;
    text-align: center;
    padding: 1rem 3rem 1rem;
    text-decoration: none;
    font-family: fenwick, sans-serif;
    font-weight: 400;
}

.navbar a:hover{
    color: #924F8A;
    font-family: fenwick, sans-serif;
    font-weight: 400;
}


/*Hero images.*/
.hero{
    position: relative;
    text-align: center;
}

.hero-image{
    max-height: 30rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*Home & About page.*/
main{
    position: relative;
    text-align: left;
    margin: 5rem 22rem 5rem;
}


/*Location page.*/
.location{
    display: grid;
    grid-template-columns: 1fr;
}

.map{
    min-height: 20rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


/*Menu page.*/
.square{
    max-height: 30rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


/*Responsive screen.*/
@media screen and (max-width: 70em) {
    main{
        margin: 5rem 10rem 5rem;
    }
}

@media screen and (max-width: 40em) {
    main{
        margin: 5rem 5rem 5rem;
    }

    .location{
        margin: 5rem 3rem 5rem;
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-gap: 1rem;
    }
}


/*Footer.*/
footer{
    background-color: #1e1e1e;
    color: #fafafa;
}

.footer{
    margin: 5rem 2rem 0rem;
    padding: 2rem 0rem 2rem;
}
