body {
    margin: 0;
    font-family: "Galmuri11", sans-serif;
    height: 100vh;
    overflow: hidden;
}

header {
    background-color: #ffffffe0;
    color: #502d15;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    top: 0;
    width: 100%;
    height: 72px;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-weight: bold;
}

nav a {
    color: #502d15;
    text-decoration: none;
    padding: 8px 16px;
}

.logo {
    margin-right: 8px;
}

.logo>a>div {
    font-size: 24px;
}

.menu-btn {
    display: none;
}

.menu-list {
    display: flex;
    gap: 0 32px;
    margin-right: 32px;
}

.menu-list li {
    list-style: none;
    margin: 16px 0;
}

.scroll-snap-container {
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

.scroll-snap-area {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

section {
    height: 100vh;
}

.section-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 2px black;
}

.section-text {
    text-align: center;
    color: #ffffff;
}

.section-button {
    font-family: "Galmuri11";
    font-weight: bold;
    display: block;
    margin-right: 32px;
    background-color: white;
    color: #502d15;
    border: none;
    padding: 8px;
    margin: 8px auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-shadow: none;
    text-decoration: none;
}

.section-button:hover {
    background-color: gainsboro;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-renderer-img {
    width: 640px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer {
    background-color: #502d15;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

/* #signage {
    display: block;
    filter: drop-shadow(0 0 8px rgb(64, 64, 64));
    width: 100%;
    margin: 0px 16px;
}

#line {
    display: flex;
    fill: darkgrey;
    max-width: 960px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: tan;
    max-width: 960px;
    min-height: 432px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
} */

@media (max-width: 768px) {
    header {
        height: 48px;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    nav a {
        padding: 0;
    }

    .menu-btn {
        display: block;
        margin-right: 32px;
        background-color: transparent;
        color: #502d15;
        border: none;
        padding: 10px;
        border-radius: 5px;
    }

    .menu-list {
        display: none;
        flex-direction: column;
        padding: 0;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        background-color: #ffffffe0;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .menu-btn.active+.menu-list {
        display: flex;
    }

    .section-renderer-img {
        width: 80%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}