:root{
    --brown: #3C2415;
    --brown-opacity: rgba(60, 36, 21,0.9);
    --green: #4F594E;
    --tan: #FFF8EB;
    --red: #BE1E2D;
}

body{
    background-color: #4F594E;
    background-image:url(./img/bg.png);
    background-size: cover;
    height:100vh;
}

.mobileNav{
    display:none;
}

.navSection{
    padding-top:60px;
    width:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
}

nav{
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items:center;
    height:50px;
    background-color:var(--brown-opacity);
    background-blend-mode: multiply;
    z-index:10;
}

nav div{
    width:33%;
    display:flex;
    align-items: center;
    justify-content: center;
    padding-left:30px;
    padding-right:30px;
}

nav div:first-child{
    justify-content: flex-start;
    display:flex;
    justify-content: space-between;
    width:40%;
}

nav div:last-child{
    justify-content: flex-end;
    width:40%;
}

nav div a{
    color:#fff;
    font-family: 'Roboto Slab', serif;
    text-decoration: none;
    margin-right:20px;
}

nav div a:hover{
    color: var(--red);
}

nav div:last-child a{
    margin-right:0;
}

.navSection nav .logo{
    width:200px;
    -webkit-filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.25));
    filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.25));
}

.navSection nav .logoLink{
    margin-right:0;
}

.navImageSection{
    padding:30px;
    background-color: var(--green);
    z-index:1;
    display:flex;
    align-items: center;
    flex-direction: column;
}

.navImageSection img{
    width: 540px;
    padding-top: 40px;
}

.navImageSection h2{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    font-style: italic;
    color:#fff;
    width:500px;
    text-align: center;
    padding-top:10px;
    line-height:1.3em;
}

.mainSection{
    background-color: var(--tan);
    display:grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    padding:30px;
    column-gap: 30px;
    padding-top:60px;
    padding-bottom:60px;
}

.mainSection div{
    display:flex;
    flex-direction: column;
    align-items: center;
}

.mainSection div *{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:16px;
    text-align: center;
    color:var(--brown);
}

.mainSection div h3{
    width:100%;
    text-align: center;
    font-family: 'Roboto Slab', serif;
    color: var(--brown);
    font-size:32px;
    padding-top:20px;
    padding-bottom:20px;
    margin-bottom:20px;
    background-size:cover;
}

.mainSection div p{
    margin-bottom:20px;
    line-height:1.3em;
    font-style:italic;
}

.mainSection div a{
    background-color:var(--green);
    padding:10px;
    color:#fff;
    font-family: 'Roboto Slab', serif;
    text-decoration: none;
    width:100%;
    display:block;
}

.mainSection div a:hover{
    background-color:var(--red);
}

.mainSection div .hoursContainer{
    border:2px solid var(--brown);
    width:100%;
    margin-bottom:20px;
    padding:20px;
}

.mainSection div .hoursContainer h4{
    border-bottom:2px solid var(--brown);
    font-family: 'Roboto Slab', serif;
    width:100%;
    text-align: left;
}

.mainSection div .hoursContainer p {
    margin-top: 20px;
    text-align: left;
    text-decoration: none;
    width:100%;
}

#hoursText{
    margin-bottom:0;
}

footer{
    display: flex;
    justify-content: space-between;
    padding:30px;
}

footer p{
    color:var(--tan);
    font-style:italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

footer div{
    display:flex;
}

footer div p, footer div a{
    text-decoration: none;
    color:var(--tan);
}

footer div a:hover{
    color:var(--red);
}

footer div p{
    margin-left:10px;
    margin-right:10px;
}

@media screen and (max-width:1385px) {
    .desktopNav{
        display:none;
    }

    .navSection{
        padding:0;
    }

    .mobileNav{
        display:flex;
        flex-direction: column;
        align-items: center;
        width:100%;
    }

    .mobileNav div{
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .mobileLogoContainer{
        width:100%;
        height:60px;
        margin:70px;
        background-color:var(--brown-opacity);
        background-blend-mode: multiply;
    }

    .mobileLogoContainer .logoLink{
        width:200px;
        margin-top:-40px;
    }

    .mobileNav .mobileMenu {
        width:100%;
    }

    .mobileNav div button{
        width:100%;
        margin-bottom:20px;
        background-color:var(--green);
        padding:20px;
        padding-top:10px;
        padding-bottom:10px;
        color:var(--tan);
        line-height: 1.3em;
        font-family: 'Roboto Slab', serif;
        font-size:20px;
    }

    .mobileNav div button:active, .mobileNav div button:focus, .mobileNav div button:hover{
        background-color:var(--red);
    }

    .mobileNav div button:focus{
        outline: 1px solid var(--tan);
    }

    #mobileLinks{
        display:none;
    }

    #mobileLinks.active{
        display:flex;
        width:100%;
        background-color: var(--green);
        margin-bottom:20px;
    }

    #mobileLinks.active a{
        color:var(--tan);
        line-height: 1.3em;
        font-family: 'Roboto Slab', serif;
        font-size:20px;
        margin-bottom:0;
        padding:20px;
        text-decoration: none;
    }

    #mobileLinks.active a:hover{
        color:var(--red);
    }

    .mobileNav div a{
        text-align:center;
        margin-right:0;
        margin-bottom:20px;
    }

    .navImageSection{
        width:100%;
    }

    .navImageSection img{
        width:100%;
        max-width: 540px;
    }

    .navImageSection h2{
        width:100%;
        max-width: 500px;
    }

    .mainSection{
        display:flex;
        flex-direction: column;
    }

    .mainSection div{
        margin-bottom:60px;
    }

    .mainSection div:last-child{
        margin-bottom: 0;
    }

    footer{
        flex-direction:column;
        text-align:center;
    }

    footer div{
        justify-content: center;
        margin-top:20px;
    }
}

