:root {
    --nav-height: 80px;
    --footer-height: 80px;
    --notice-height: 0px;
}
html, body {
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: fit-content;
    padding: 0;
    margin: 0;
}
* {
    box-sizing: border-box;
    scroll-margin-top: calc(var(--nav-height) - 1px);
}
body {
    background: #000000;
    color: #FFFFFF;
    font-family: Roboto, sans-serif;
    font-size: 16px;
}
body[data-notice-active="true"] {
    --notice-height: 65px;
}
a {
    display: contents;
    cursor: pointer;
    text-decoration: none;
    color: #e5131a;
}
img {
    pointer-events: none;
}
.button {
    padding: 1.5em 2.2em;
    display: inline-block;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    background: #FFFFFF;
    cursor: pointer;
    user-select: none;
    text-align: center;
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
            "FILL" 0,
            "wght" 300,
            "GRAD" 0,
            "opsz" 48;
}

img.lazyload {
    opacity: 0;
    transition: opacity .5s;
}
img.lazyload.lazyloaded {
    opacity: 1;
}

mdl-spinner {
    --spinner-color: #B51116;
}

#header {
    position: sticky;
    top: -0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: var(--nav-height);
    z-index: 10;
    width: 100%;
    transition: background-color 0.2s;
}
body[data-scrolled="true"] #header {
    background: #000000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}
#header-image {
    height: 50px;
    filter: invert(100%);
    user-select: none;
    pointer-events: auto;
}
#nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1;
    height: 100%;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
}
#nav .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    height: 100%;
    padding: 0 30px;
}
#nav:not([data-active]) .nav-item-mobile {
    display: none;
}
#nav-content {
    display: flex;
    flex-direction: row;
    height: 100%;
}
#header-mobile-placeholder, #header-toggle-button, #nav-close, #nav-footer, #nav-fill {
    display: none;
}
#header-mobile-placeholder {
    flex: 1;
}
#header-toggle-button, #nav-close {
    cursor: pointer;
    font-size: 42px;
    user-select: none;
}
#nav-close {
    text-align: right;
    cursor: pointer;
    padding: 20px 30px;
}
#nav-footer {
    padding: 20px;
}
#nav-footer .button {
    display: block;
}
#nav-fill {
    flex: 1;
}

#main {
    position: relative;
    margin-top: calc(var(--nav-height) * -1);
}

#gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 70%;
    background: #FFFFFF;
    color: #000000;
    padding: 50px 0;
}
#gallery h1 {
    cursor: pointer;
    font-size: 2.5em;
    font-weight: 100;
}
#gallery-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 10px;
}
.gallery-image {
    display: inline-flex;
    background: #000000;
    overflow: hidden;
}
.gallery-image img,
.gallery-image amp-img {
    width: 450px;
    height: 338px;
    object-fit: cover;
    transition: transform 0.2s, opacity 0.5s;
}
.gallery-image:hover img {
    transform: scale(1.03);
}
.gallery-caption-container {
    display: none;
}
.gallery-caption {
    display: block;
    font-weight: 500;
}
.gallery-subcaption {
    font-size: 0.9em;
}

#banner {
    position: relative;
    display: flex;
    align-items: center;
    height: calc(100vh - var(--notice-height));
    height: calc(100svh - var(--notice-height));
    min-height: calc(var(--nav-height) + 300px);
    overflow: hidden;
    z-index: 0;
}
#banner-background, #banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
#banner-background {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../../assets/gallery.jpg);
    background-color: #1c1a1d;
    background-size: cover;
    background-position: center center;
}
#banner-button {
    margin: 30px 0;
}
#banner-content {
    margin-left: 100px;
}
#banner-text {
    font-weight: 400;
    font-size: 3.1em;
    font-family: "Open Sans", sans-serif;
    letter-spacing: -2px;
    line-height: 1.3em;
}
#banner-down {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    user-select: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}
#location {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--nav-height) - var(--footer-height) + 1px);
    min-height: calc(100svh - var(--nav-height) - var(--footer-height) + 1px);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../../assets/footer.jpg);
    background-size: cover;
    background-position: center center;
}
#location-container {
    display: grid;
    grid-template-columns: 250px 325px 275px;
    justify-content: center;
    padding: 20px 0;
}

p {
    margin: 0;
}

hr {
    margin: 15px 0;
    width: 300px;
    border: none;
    border-top: 1px solid #9a9a9a;
}
p.header {
    font-weight: 700;
    margin-bottom: 7px;
}
h1 {
    margin-top: 0;
    font-size: 1.4em;
    font-weight: 300;
}
h1:after {
    content: "";
    width: 60px;
    height: 2px;
    display: block;
    background: #e5131a;
    margin-top: 3px;
}
h1:not(:first-of-type) {
    margin-top: 15px;
}
section {
    justify-self: flex-start;
    padding: 20px;
}

.delivery-logo,
.order-button {
    width: 175px;
}
.delivery-logo {
    pointer-events: auto;
    border-radius: 25px;
}
.order-button {
    margin-bottom: 20px;
}
#location-container .order-button {
    margin-bottom: 15px;
}

.delivery-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.delivery-text {
    margin-top: 10px;
    margin-bottom: 15px;
}

#business-hours-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 0;
}
.business-hour {
    display: contents;
}
.business-hour-details {
    text-align: center;
}

#order-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
#order-loading[data-enabled="true"] {
    opacity: 1;
    pointer-events: auto;
}
#order-loading mdl-spinner {
    transform: scale(2);
}

#footer {
    position: relative;
    display: flex;
    align-items: center;
    background: #1d1d1d;
    background: linear-gradient(45deg,#1f1f1f 0%,#191919 100%);
    color: #7d7d7d;
    height: var(--footer-height);
    padding: 0 16px;
    white-space: nowrap;
    font-size: 0.8em;
    line-height: 16px;
}

#footer_content {
    display: inline-block;
    width: 50%;
}

#footer_content_social {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_content_social_item {
    margin: 0 7px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_content_social_item > svg {
    height: 22px;
}

.footer_content_social_item.social_email > svg {
    fill: #404040;
}

.footer_content_social_item.social_apple > svg {
    fill: #7d7d7d;
    transform: scale(.88) translateY(-0.5px)
}

#notice {
    background: #1967D2;
    border: 3px solid #608bc5;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    height: var(--notice-height);
}
body[data-notice-active="true"] #notice {
    display: flex;
}

@media screen and (max-width: 900px) {
    body {
        font-size: 15px;
    }
    #location-container {
        grid-template-columns: 250px 325px;
    }
}
@media screen and (max-width: 700px) {
    :root {
        --footer-height: 110px;
    }
    body {
        font-size: 14px;
    }
    #location {
        min-height: calc(100% - var(--nav-height) - 102px);
    }

    #header-image {
        height: 40px;
    }

    #footer {
        flex-direction: column;
        padding: 0 16px;
    }

    #footer_content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: var(--footer-height);
    }

    #footer_content_social {
        position: initial;
        height: auto;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 850px) {
    #location-container {
        grid-template-columns: 325px;
        font-size: 13px;
    }
    .delivery-logo {
        width: 150px;
        border-radius: 18.75px;
    }
    #banner-content {
        margin-left: 50px;
    }
    #banner-text {
        font-size: 2.5em;
    }

    body[data-scrolled="true"] #header {
        background: #000000;
        backdrop-filter: none;
    }
    #nav {
        position: fixed;
        flex-direction: column;
        justify-content: flex-start;
        align-items: normal;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        opacity: 0;
        pointer-events: none;
    }
    #nav[data-active] {
        transition: opacity 0.2s;
    }
    #nav[data-active="true"] {
        opacity: 1;
        pointer-events: auto;
    }
    #nav .nav-item {
        display: inline-block;
        padding: 5px 30px;
    }
    #header-mobile-placeholder, #header-toggle-button, #nav-close, #nav-footer, #nav-fill {
        display: block;
    }
    #header-button {
        display: none;
    }
    #nav-content {
        height: auto;
        flex-direction: column;
        font-size: 2em;
    }
}
@media screen and (max-width: 450px) {
    #banner-content {
        margin-left: 25px;
    }
}
@media screen and (max-width: 1440px) {
    .gallery-image img,
    .gallery-image amp-img {
        width: 325px;
        height: 244px;
    }
}
@media screen and (max-width: 1024px) {
    .gallery-image img,
    .gallery-image amp-img {
        width: 225px;
        height: 169px;
    }
}
@media screen and (max-width: 768px) {
    .gallery-image img,
    .gallery-image amp-img {
        width: 150px;
        height: 113px;
    }
}
@media screen and (max-width: 500px) {
    #gallery-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-image img,
    .gallery-image amp-img {
        width: 140px;
        height: 105px;
    }
    /*.gallery-image:last-child {*/
    /*    display: none;*/
    /*}*/
}

.pswp--touch .pswp__button--arrow {
    visibility: visible;
}
.pswp__item[aria-hidden="true"] .textLayer {
    display: none;
}
/* Start of pdf.js textLayer */
.textLayer {
    position: absolute;
    text-align: initial;
    inset: 0;
    overflow: hidden;
    /*opacity: 0.25;*/
    line-height: 1;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    forced-color-adjust: none;
    transform-origin: 0 0;
    z-index: 2;
}

.textLayer :is(span, br) {
    color: transparent;
    position: absolute;
    white-space: pre;
    cursor: text;
    transform-origin: 0% 0%;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
    top: 0;
    height: 0;
}

.textLayer .highlight {
    margin: -1px;
    padding: 1px;
    background-color: var(--highlight-bg-color);
    border-radius: 4px;
}

.textLayer .highlight.appended {
    position: initial;
}

.textLayer .highlight.begin {
    border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
    border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
    border-radius: 0;
}

.textLayer .highlight.selected {
    background-color: var(--highlight-selected-bg-color);
}

.textLayer ::-moz-selection {
    background: blue;
    background: AccentColor;
}

.textLayer ::selection {
    background: blue;
    background: AccentColor;
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::-moz-selection {
    background: transparent;
}
.textLayer br::selection {
    background: transparent;
}

.textLayer .endOfContent {
    display: block;
    position: absolute;
    inset: 100% 0 0;
    z-index: -1;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.textLayer .endOfContent.active {
    top: 0;
}
/* End of pdf.js textLayer */