@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

:root {
    --background-color: #DCDCDC;
    --primary-color: #002F65;
    --tertiary-color: #E6CA73;
}


@font-face {
    font-family: 'Evolution';
    src: url('evolution-webfont.ttf');
}

body {
    background-color: var(--background-color);
    font-family: 'Source Serif 4', serif;
}

h1 {
    src: url('evolution-webfont.ttf');
    font-family: Evolution;
    font-size: 5vh;
    text-align: center;
}

.body {
    height: 98vh;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-left: 4%;
    padding-right: 2%;
    margin: auto;
    gap: 5%;
    color: var(--primary-color);
}

.tel {
    font-family: 'Source Serif 4', serif;
    font-size: 2ch;
    font-weight: 400;
    line-height: normal;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 19px;
    width: 20vw;
    align-self: stretch;
    
    text-align: center;
    position: fixed;
    left: 0;
    top: 18vh;
}

hr {
    width: 75%;
    border: 1px solid var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: Evolution;
    font-size: 2.5ch;
    letter-spacing: 0.1ch;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

a:hover {
    opacity: 0.7;
}

.social {
    display: flex;
    flex-direction: row;
    padding: 3px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.social .social-icon {
    width: 22px;
}

.right {
    width: 82%;
    height: 98vh;
    display: inline-block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.grid {
    width: 100%;
    display: grid;
    padding-top: 1%;
    grid-template-columns: repeat(8, 12%);
    grid-template-rows: repeat(3, 30vh);
    grid-column-gap: 12px;
    grid-row-gap: 12px; 
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 12px 0px;
}

.page-content h2 {
    font-size: 4ch;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1ch;
    text-align: center;
    font-family: Evolution;
    /*margin-bottom: -1.75ch;*/
}

.page-content img {
    width: 90%;
    height: 20vh;
    object-fit: cover;
}

.page-content p {
    width: 75%;
    text-align: center;
    font-family: 'Source Serif 4', serif;
}

.menu-item p {
    margin: auto;
}

.nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

#drop {
    grid-area: 1 / 1 / 2 / 4;
}

#board {
    grid-area: 1 / 4 / 2 / 9;
}

#taco {
    grid-area: 2 / 1 / 3 / 5;
}

#cheese {
    grid-area: 2 / 5 / 3 / 9;
}

#fish {
    grid-area: 3 / 1 / 4 / 9;
}

.index-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.bottom-nav {
    display: none;
}

@media screen and (max-width: 1100px) {
    .body {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .left {
        position: relative;
        width: 100%;
        padding: 0;
        top: 0;
        left: 0;
    }

    .nav {
        display: none;
    }

    .right {
        width: 100%;
        height: fit-content;
        padding: 0;
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 0.5fr);
        grid-column-gap: 12px;
        grid-row-gap: 12px; 
        padding-bottom: 2ch;
    }

    .page-content img {
        width: 100%;
        height: 10vh;
    }

    .page-content p {
        width: 100%;
    }


    .bottom-nav {
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding-top: 2ch;
        padding-bottom: 2ch;
    }
    

    #drop {
        grid-area: 1 / 1 / 2 / 2;
    }
    
    #board {
        grid-area: 2 / 1 / 3 / 2;
    }
    
    #taco {
        grid-area: 3 / 1 / 4 / 2;
    }
    
    #cheese {
        grid-area: 4 / 1 / 5 / 2;
    }
    
    #fish {
        grid-area: 5 / 1 / 6 / 2;
    }

}

/* Menu Button */
