:root {
    --body-font: "Poetsen One", sans-serif;
    --bg-color: #FAC05E;
    --brand: #EE6352;
    --accent: #59CD90;
    --highlight: #3FA7D6;
    --alt-bg-color: #F79D84;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    font-family: var(--body-font);
}

.navbar {
    background: var(--highlight);   
}

nav {
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    background: var(--highlight);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
}

.brand {
    color: var(--brand);
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px black;
    margin: 10px;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: center;
    color: var(--brand);
    gap: 15px;
    text-shadow: 2px 2px 5px black;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("img/hero-background4.jpg");
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--alt-bg-color);
}

.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 2rem;
}

.hero-content p {
    width: 50%;
    font-weight:lighter;
}

.gallery {
    width: 100%;
    padding-top: 50px;
    margin: auto;
}

.gallery-content {
    padding: 50px;
}

.menu-card-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 25px;
}

.menu-card {
    padding: 20px;
    border-radius: 20px;
    height: fit-content;
    max-width: 300px;
    height: 350px; 
    background: var(--accent);
    box-shadow: 10px 10px var(--highlight);
}

.menu-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-card-details {

    max-width: 300px;
    max-height: 125px;
    text-align: center;
    color: #000009;
}

footer {
    background: var(--highlight);
    padding: 40px;
}

.company-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content:center;
    margin: 50px;
}

.brand-info{
    padding: 10px;
    border-right: 2px dashed var(--brand);
    border-left: 2px dashed var(--brand);
}

.phone a{
    text-decoration: none;
    color: black;
    margin-left: 10px;
}

.email {
    margin-left: 10px;
}

.email a{
    text-decoration: none;
    color: black;
}

.address {
    padding: 30px;
    border-right: 2px dashed var(--brand);
}

.map {

    border-right: 2px dashed var(--brand);
}

.map img {
    width: 300px;
}

.directions {
    display: none;
}

@media only screen and (max-width: 600px ){
    .gallery {display:none;}
    footer {display:none;}
    .hero-content p{display:none;}
    .hero{
        height: 40vh;
    }
    .directions {
        width: 100%;
        display:flex;
        flex-direction: column;
        height: 60vh;
        justify-content: flex-start;
    }

    .directions div {
        margin: 10px;
    }

    .directions img {
        width: 90%;
        margin: 0 auto;
    }
    .directions p{
        font-size: 24px;
        text-align: center;
    }


}

@media only screen and (max-width: 768px) {
    .hero {
        height: 20vh;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .gallery {
        padding-top: 10px;
    }

    .gallery-content {padding-top: 10px;}

    .menu-card {
        display: flex;
        flex-direction: row;
        padding: 20px;
        border-radius: 20px;
        height: fit-content;
        width: 400px;
        background: var(--accent);
        box-shadow: 10px 10px var(--highlight);
    }

    .menu-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    }

    .menu-card-details {
        max-width: 300px;
        max-height: 75px;
        text-align: left;
        color: #000009;
        padding-left: 10px;
    }

    .menu-card-details h2 {
        padding: 0;
        margin: 0;
        font-size: 1.2em;
    }

    .menu-card-details p {
        font-size:.75em;
    }

    .map {display:none;}


}

