@import "global.css";

body {
    font-family: var(--main-font);
    background-color: var(--main-color);
    margin: 0;
    overflow-x: hidden;
    max-width: 100vw;
    overflow-x: hidden;
}

nav {
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    min-height: 60px;
    max-height: 250px;
    width: 100%;
}

nav #nav-logo {
    width: 0px;
}

nav img {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

nav #nav-options {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

nav #nav-options a{
    margin-left: 3rem;
    position: relative;
    color: var(--third-dark);
    text-decoration: none;
    margin: 0 35px;
    font-size: 24px;
    font-weight: 300;
}

nav #nav-options a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--third-dark);
    transition: width 0.3s ease;
}

nav #nav-options a:hover::after {
    width: 100%;
}

#menu-intro {
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#menu-intro #menu-graphic img {
    width: auto;
    max-height: 225px;
}

#menu-intro #menu-description {
    margin-top: 3rem;
    width: 75%;
    text-align: center;
}

#menu-intro #menu-description span {
    font-style: italic;
    font-family: var(--second-font);
    color: var(--third-dark);
    font-size: 24px;
    font-weight: 300;
}

#menu-intro #menu-description #quote-citation {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--third-dark);
    margin-top: 3rem;
    padding-left: 20em;
    text-align: right;  
}


@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    nav img {
        flex-shrink: 1;
        margin: 0;
    }
    nav #nav-logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #menu-intro {
        margin-top: 2rem;
        padding-bottom: 0;
    }

    #menu-intro #menu-graphic img {
        max-height: 150px;
    }

    #menu-intro #menu-description span {
        font-size: 16px;
        font-weight: 300;
    }

    #menu-intro #menu-description #quote-citation {
        padding-left: 0em;
        font-size: 1rem;
    }

    #footer {
        flex-direction: column;
        align-items: center;
        height: 350px;
        gap: 1em;
    }
    #footer > div {
        max-width: none;
        width: 100%;
        text-align: center;
        padding: 1em 0;
    }
    #footer > div:not(:last-child)::after {
        display: none;
    }   
}


#menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu-items p {
    font-size: 96px;
}

#menu-items img{
    max-width: 100%;
}