@font-face {
    font-family: 'Cera';
    src: url('/font/CeraCompactPro-Regular.woff2') format('woff2'),
        url('/font/CeraCompactPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-brand: #6F4F4E;
    --color-accent: #C36159;
    --color-light: #CDC6C0;
}

a {
    color: var(--color-light);
    text-decoration: none;
}

html {
    background-color: var(--color-brand);
    background-image: url(/img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

body {
	margin: 0;
    height: 100vh;
    font-family: "Cera";
    overflow: auto;
    font-weight: 400;
}

h2, h3 {
    font-weight: 400;
}

.content-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 7vh 0;
    background: rgb(255 255 255 / 65%);
}

.view-our-menu {
    background-image: url(/img/menu-bg.svg);
    background-size: 100% 100%;
    background-position: 50% 50%;
    padding: 40px;
    text-align: center;
    max-width: 250px;
    max-height: 250px;
    margin: 0 auto;
}

.view-our-menu h2 {
    color: var(--color-brand);
    border-bottom: 2px solid var(--color-brand);
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.menu-columns > div {
    padding: 20px;
}

.menu-columns {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.section--menu {
    background-image: linear-gradient(to bottom, rgb(255 255 255 / 65%) 35%, transparent 35%);
}

.brand-label span {
    margin: 5px 10px;
    letter-spacing: .95em;
}

.brand-label {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--color-light);
    font-size: 24px;
}

section.section--label {
    padding: 10vh 0;
}

ul.footer-list .list-icon {
    width: 30px;
    display: inline-block;
}

ul.footer-list li a {
    color: var(--color-light);
    text-decoration: none;
}

ul.footer-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul.footer-list li:not(:last-child) {
    margin-bottom: 7px;
}

.des-copy {
    background: var(--color-accent);
    padding: 30px;
    text-align: center;
    color: var(--color-light);
    font-size: 18px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 750px;
}

.two-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer img {
    max-width: 20px;
    height: 20px;
    object-fit: contain;
}

.col-auto .follow-text {
    color: var(--color-accent);
    flex: 1;
    margin-right: 15px;
    letter-spacing: .3em;
}

.col-auto img {
    margin: 0 5px;
    display: block;
}

.col-auto > div {
    display: flex;
    align-items: center;
}

ul.footer-list li {
    display: flex;
}

.col-auto {
    padding: 20px 0;
    border-top: 2px solid var(--color-light);
    border-bottom: 2px solid var(--color-light);
}

img.menu-flag {
    height: 25px;
}

.page-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 750px) {
    .two-column {
        display: block;
    }
}

@media (max-width: 750px) {
    .content-wrapper {
        padding: 0 30px;
    }
}