@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f7f3f0;
    color: #5d544c;
}

h1 {
    font-size: 10vw;
    font-weight: 200;
    color: #b0a69540;
    letter-spacing: 10px;
    display: flex;
    justify-content: center;
    margin-top: 15vh;
}

h2 {
    writing-mode: vertical-rl;
    margin: 8vw auto;
    font-size: 3vw;
    letter-spacing: 1.2rem;
    display: flex;
}

#menu {
    margin: 5vh 10vw;
    text-align: center;
}

.seasonal .menu-contents {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: auto;
}

.standard .menu-contents {
    gap: 10vw;
}

.standard .menu-contents,
.menu-item {
    display: flex;
    flex-direction: column;
}

.standard .menu-item {
    max-width: 25vw;
}

.standard {
    margin: 10vw 0 5vw;
    display: flex;
    flex-direction: column;
}

.sweets,
.drink {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2vw;
}

.name {
    display: inline-block;
    width: 100%;
}

.price {
    margin: 0;
    font-weight: 400;
    display: inline-block;
    width: 100%;
}

.seasonal img {
    width: 35vw;
    height: auto;
}

.seasonal .name,
.seasonal .price {
    font-size: 1.2rem;
}

.standard .name,
.standard .price {
    font-size: 0.9rem;
}

.standard img {
    width: 25vw;
    height: auto;
}

.button {
    display: inline-block;
    background-color: #f0e8e1;
    border: solid #5d544c 1px;
    font-size: 13px;
    padding: 10px 60px;
    color: #5d544c;
    letter-spacing: 2.5px;
    text-decoration: none;
    cursor: pointer;
    margin: 2rem auto;
    transition: ease-in 0.2s;
    box-shadow: #5d544c 1px 1px 0.5px;
}

.button:hover {
    color: #f7f3f0;
    background-color: #5d544c;
    box-shadow: 0 0 0;
}


footer {
    text-align: center;
}

.copyright {
    display: inline-block;
    font-size: 16px;
    margin: 1.5rem auto;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media(max-width:960px) {
    h2 {
        font-size: 1.6rem;
    }

    .sweets,
    .drink {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10vw;
    }

    .standard .menu-item {
        max-width: 35vw;
    }

    .standard img {
        width: 35vw;
    }

    #menu .name,
    #menu .price {
        font-size: 2.4vw;
    }
}