:root {
    --share-icons: #0E254E;
    --share-icons-hover: #16C0B4;
}

html {
    font-size: 13px;
}
@media only screen and (min-width : 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-size: 200px;
}

#main-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
}

.text-alt {
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .6;
}

section.main-section {
    padding: 4rem 2rem;
    padding-bottom: 0;
}
@media only screen and (min-width : 768px) {
    section.main-section {
        padding: 5rem;
        padding-bottom: 0;
    }
}

section.main-section:last-of-type {
    padding-bottom: 5rem;
}

section#welcome {
    height: 80vh;
    background-size: cover !important;
    padding-bottom: 5rem;
}
@media only screen and (min-width : 768px) {
    section#welcome {
        height: 100vh;
    }
}


section#welcome .container-fluid,
section#welcome .row {
    height: 100%;
}

section#welcome .cover {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: .8rem;
    text-align: center;
}

section#welcome .cover.is-frosty {
    backdrop-filter: blur(50px);
    background-color: rgba(0,0,0,.2);
}


section#welcome .cover img {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 3rem;
}

.social-icons {
    margin-top: 2rem;
}

.social-icons a {
    color: var(--share-icons);
    transition: all ease-in-out .2s;
}
.social-icons a:hover {
    color: var(--share-icons-hover);
}

.main-section h1 {
    margin-bottom: 4rem;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-section h1 span {
    text-align: left;
    line-height: 1;
    max-width: 80%;
}

.main-section h1 span.small {
    font-size: 50%;
}

section.main-section h1 .toggle-btn {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0xMiAwYzYuNjIzIDAgMTIgNS4zNzcgMTIgMTJzLTUuMzc3IDEyLTEyIDEyLTEyLTUuMzc3LTEyLTEyIDUuMzc3LTEyIDEyLTEyem0wIDFjNi4wNzEgMCAxMSA0LjkyOSAxMSAxMXMtNC45MjkgMTEtMTEgMTEtMTEtNC45MjktMTEtMTEgNC45MjktMTEgMTEtMTF6bTAgMTAuMjkzbDUuMjkzLTUuMjkzLjcwNy43MDctNS4yOTMgNS4yOTMgNS4yOTMgNS4yOTMtLjcwNy43MDctNS4yOTMtNS4yOTMtNS4yOTMgNS4yOTMtLjcwNy0uNzA3IDUuMjkzLTUuMjkzLTUuMjkzLTUuMjkzLjcwNy0uNzA3IDUuMjkzIDUuMjkzeiIvPjwvc3ZnPg=='); 
    transition: all ease-in-out .2s;
}

@media only screen and (min-width : 768px) {
    section.main-section h1 .toggle-btn {
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yMy4yNDUgNGwtMTEuMjQ1IDE0LjM3NC0xMS4yMTktMTQuMzc0LS43ODEuNjE5IDEyIDE1LjM4MSAxMi0xNS4zOTEtLjc1NS0uNjA5eiIvPjwvc3ZnPg==');
    }
}

section h2, 
section .h2 {
    font-size: 1.3rem;
}

section.main-section.closed {
    padding-bottom: 0;
}

section.main-section.closed + section:not(.closed),
section.main-section.closed + section.main-section.closed {
    padding-top: 0;
}

section.main-section.closed .inner-section {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

section.main-section .inner-section {
    transition: all ease-in-out .2s;
}

section.main-section.closed h1 .toggle-btn {
    transform: rotate(45deg);
}
@media only screen and (min-width : 768px) {
    section.main-section.closed h1 .toggle-btn {
        transform: rotate(90deg);
    }
}

.menu-item {
    position: relative;
    margin-bottom: 2rem;
}
.menu-item-photo img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: .5rem;
}
.menu-item-title {
    margin-bottom: 1rem;
}
.menu-item-title span {
    display: block;
    margin-bottom: .5rem;
}

.menu-item p i {
    font-size: 90%;
    opacity: .7;
    display: inline-block;
    margin-top: .5rem;
}

@media only screen and (min-width : 768px) {
    .menu-item.has-image {
        min-height: 6rem;
        margin-bottom: 3rem;
    }
    .menu-item.has-image {
        padding-left: 10rem;
    }
    .menu-item p {
        margin-right: 15rem;
    }
    .menu-item-photo {
        position: absolute;
        left: 0;
    }
    .menu-item-photo img {
        width: 8rem;
        height: 6rem;
        object-fit: cover;
    }
    .menu-item-title {
        display: flex;
        justify-content: space-between;
    }
}





#message.updated {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}
#message.updated p {
    margin: 0;
}

.acf-form-submit {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e9e9e9;
}
.acf-form-submit input {
    margin: 0 auto;
    display: inherit;
    border: 0;
    background-color: #196bff;
    padding: 10px 30px;
    border-radius: 5px;
    color: #fff;
}
.acf-form-submit input:hover {
    background-color: #0f3f95;
}

.acf-button[data-name="add-layout"] {
    background: #000;
    display: block;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    color: #fff;
}
.acf-button[data-name="add-layout"]:hover {
    background: #222;
}


.translator-container #flags {
    display: none !important;
}
.translator-container .goog-te-gadget {
    color: transparent !important;
}
.translator-container .goog-te-combo {
    margin: 0 auto !important;
    display: inherit !important;
}
.translator-container .goog-logo-link {
    display: none !important;
}


body {
	margin: 0;
    position: relative;
    height: 100%
}

html {
    height: auto !important;
}

.spy-this {
    position: relative;
    height: 100%
}

.nav-scroll-spy {
    position: sticky;
    top: 0;
    z-index: var(--chk-z-sticky, 200);
    padding: 1rem 0;
}

.active-link-pill {
    background: #e9e9e9;
}

.nav-scroll-spy .nav-link {
    padding: .3rem 1rem !important;
}

.nav-scroll-spy .nav-link br,
.nav-scroll-spy .nav-link span,
.nav-scroll-spy .nav-link small {
    display: none;
}

#section-nav .row,
#section-nav ul {
    width: 100%;
    margin: 0 !important;
}
#section-nav ul.nav {
    padding: 0 15px;
    white-space: nowrap;
    overflow: scroll;
}
#section-nav li {
    display: inline-block;
    width: auto;
}
