@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;700&family=Proza+Libre:ital,wght@0,400;0,700;1,400;1,700&family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&family=Permanent+Marker&display=swap');
@import url('https://firebasestorage.googleapis.com/v0/b/restoplus-public/o/public%2Ffonts%2Fhandelsontwo.otf?alt=media&token=0b711ede-5c6d-4357-afd6-b3cc0ebd5948');
@import url('https://firebasestorage.googleapis.com/v0/b/restoplus-public/o/public%2Ffonts%2Fstationnofour.otf?alt=media&token=e1e81016-fb5f-48bd-931d-9868bc75c931');

:root {
    --primary-color: #151616;
    --secondary-color: #232526;
    --bg-color: #0e0d0d;
    --overlay-color: #00000000;
    --text-color: #e9e3e2;
    --button-hover-color: #f3aa0c;
    --button-border-radius: 0;
    --body-font: Montserrat;
    --heading-font: Staatliches;
    --navbar-bg: var(--bg-color);
    --menu-item-color: var(--button-hover-color);
    --special-note-bg: 
    /* applies to About, Loyalty Coupon, Special Note TEXT bg */
    --card-border-radius: 0;
    --card-bg: #232526;
    --featured-item-section-bg: linear-gradient(to top, rgba(228, 213, 5, 0.753), #f3aa0c);
    --featured-item-card-bg: #0e0d0d;
    --featured-item-card-text: var(--text-color);
    --footer-bg: var(--secondary-color);
}

@font-face {
    font-family: "Handelson Two";
    src: url("https://firebasestorage.googleapis.com/v0/b/restoplus-public/o/public%2Ffonts%2Fhandelsontwo.otf?alt=media&token=0b711ede-5c6d-4357-afd6-b3cc0ebd5948");
}

@font-face {
    font-family: "Station No Four";
    src: url("https://firebasestorage.googleapis.com/v0/b/restoplus-public/o/public%2Ffonts%2Fstationnofour.otf?alt=media&token=e1e81016-fb5f-48bd-931d-9868bc75c931");
}

/* -------------------- Base -------------------- */
body {
    background: var(--bg-color);
    font-family: var(--body-font);
    color: var(--text-color);
}

/* -------------------- Typography -------------------- */
.heading,
.page-title {
    font-family: var(--heading-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    /*  text-shadow: 1px 1px 0 #9e8e6f, 2px 2px 0 #9e8e6f;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #232526; */
}

.navbar .content .heading {
    text-shadow: none !important;
    -webkit-text-stroke-width: 0;
    font-family: Staatliches;
}

h4,
.h4 {
    font-family: var(--heading-font) !important;
    font-size: 24px !important;
}

/* -------------------- Buttons, Links, Icons -------------------- */
a {
    color: inherit;
}

.button {
    border-radius: var(--button-border-radius) !important;
    border: none !important;
}

.button:hover,
.navbar .book-a-table-button:hover {
    color: #FFFFFF !important;
    background-color: var(--button-hover-color) !important;
    border-color: var(--button-hover-color) !important;
}

.link:hover {
    text-decoration: underline;
}

/* -------------------- Navbar -------------------- */
.navbar,
.navbar .mobile-menu {
    background-color: var(--navbar-bg) !important;
    color: #FFFFFF;
}

.navbar .nav-item .link:hover {
    text-decoration: none !important;
    border-bottom: 4px solid #fff !important;
}

.navbar .order-now-button {
    border: 1px solid #f0ed41 !important;
}

.navbar .book-a-table-button {
    border: 1px solid #f0ed41 !important;
}

/* -------------------- Footer -------------------- */
footer {
    background: var(--primary-color);
}

footer .order-now-button {
    background-color: #f0ed41 !important;
    color: inherit !important;
}

/* -------------------- Popup - Custom Message and Loyalty Program -------------------- */
.website-popup-modal .dismiss-button path {
    stroke: var(--secondary-color);
}

.website-popup-modal .button {
    background-color: var(--primary-color) !important;
    color: inherit !important;
}

/* -------------------- Common - Page -------------------- */
.collection-type-button,
.collection-types button.collection-type {
    border: 1px solid #f0ed41 !important;
    background-color: transparent;
    color: inherit;
}

.collection-type-button.selected {
    background-color: #f0ed41;
    color: #ffffff;
}

/* -------------------- Home Page -------------------- */
/*** Hero section */
section.hero .overlay {
    background: transparent !important;
    backdrop-filter: none;
}

section.hero .button {
    background-color: #F1E6C8 !important;
    color: #e7931c !important;
    border: 1px solid #ffffff !important;
    border-color: #ccc3aa !important;
}

section.hero .button:hover {
    color: #FFFFFF !important;
    background-color: var(--button-hover-color) !important;
    border-color: var(--button-hover-color) !important;
}

/*** Covid Safe section */
section.covid-safe .guideline path {
    fill: #f0ed41;
}

/*** About Us card */
section.about-us .content .info {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
}

/*** Featured Item section */
section.featured-items {
    background: var(--featured-item-section-bg);
}

section.featured-items .heading {
    color: #FFFFFF;
}

section.featured-items .content .info {
    background-color: var(--featured-item-card-bg) !important;
    color: var(--featured-item-card-text);
    border-radius: 0 !important;
}

section.featured-items .view-menu-button {
    background-color: var(--secondary-color) !important;
}

/*** Whats New section */

/*** Loyalty Card & Coupon sections */
section.loyalty-coupon .promo {
    background: var(--card-bg);
    border-radius: var(--card-border-radius);
}

/*** Special Note section */
section.special-note {
    background-color: linear-gradient(to right, #f9ce78, #f0ed41) !important;
    background-image: var(--special-note-bg) !important;
    background-size: cover !important;
}

section.special-note .content .offset {
    background-color: var(--primary-color);
    border-radius: var(--card-border-radius);
}

section.whats-new .read-more-link {
    color: inherit !important;
}


/* -------------------- Menu Page -------------------- */
.menu-page .category h2,
.menu .categories .category h2.name {
    font-family: Handelson Two;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
}

.menu .items .name {
    color: var(--menu-item-color);
    font-family: 'Staatliches' !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
}

.restaurant-website-page .restaurant-store-locator .info {
    background: none !important;
}

section.featured-items .view-menu-button {
    background: none !important;
    border: 1px solid #ffffff !important;
}

.navbar .nav-item .selected {
    border-color: #d1aa2ad3 !important;
}

/* Remove logo only on hero banner */
section.hero .content .overlay img {
    display: none;
}



/*** Covid Safe section */
section.covid-safe {
    padding-bottom: 0px;
}

section.covid-safe .guideline path {
    fill: var(--primary-color);
}

section.covid-safe .content .image {
    display: none;
}

section.covid-safe .content .info .heading,
section.covid-safe .content .info .message{
    display: none;

}

section.covid-safe .content {
    height: 329px;
    padding: unset;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;

    overflow: hidden;
}

section.covid-safe .info {
    max-width: 1280px;
    width: 100%;
    padding: unset!important;
}

section.covid-safe .content::before {
    position: absolute;
    background-image: url('https://us-central1-restoplus-prod.cloudfunctions.net/imageServer/images/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/custom_themes/24-spices-covid-section-banner-desktop.jpg');
    background-repeat: no-repeat;
    background-size:100%;
    display: block;
    content: '';
    max-width: 1280px !important;
    max-height: 329px !important;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .custom-page h1 {
        font-size: 32px !important;
    }

    section.covid-safe .content {
    height: 768px;
    margin-top: 120px;
    margin-bottom: 40px;
}

    /* covid section */
    section.covid-safe .content::before {
        background-image: url('https://us-central1-restoplus-prod.cloudfunctions.net/imageServer/images/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/custom_themes/24-spices-covid-section-banner-mobile.jpg');
        max-width: 768px !important;
        max-height: 768px !important;
    }
}

@media (max-width: 375px) {
    section.covid-safe .content {
        height: 375px;
        margin:0px;

    }
}
/* End of covid section */


/*** Functions Page ***/

.custom-page .banquet-menu-page {
    display: grid;
    justify-items: center;
    row-gap: 20px;
}

.custom-page .banquet-menu-page .hero {
    display: grid;
    position:relative;
    max-width: 1800px;
    width: 100%;
}

.custom-page .banquet-menu-page h2 {
    color: #FFFFFF;
    font-size: 50px;
    margin-top: 25px;
    margin-left: 18px;
    text-shadow: 0px 1px 1px rgb(2 2 2);
    bottom: 30px;
    font-family: "Playfair Display SC", serif;
    /* font-family: "Montserrat", serif; */
    font-optical-sizing: auto;
    text-transform: uppercase;
}

.custom-page .banquet-menu-page > img {
    max-width: 720px;
    width: 100%;
}


@media (max-width: 420px) {
    .custom-page .banquet-menu-page h2 {
        font-size: 30px;
        bottom: 15px;
        width: 100px;
        line-height: 30px;
    }
}
/*** End of Functions Page ***/

/*** Send us a message in custom page */
.custom-page .send-us-a-message-label {
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    justify-self: center;
    padding-top: 30px;
}


.custom-page iframe {
    border: 0px none;
    margin-left: -60px;
    height: 1095px;
    margin-top: -97px;
    width: 700px;
    padding: 50px;
}

.custom-page .send-us-a-message-label {
    text-align: center;
}

.custom-page .map {
    display: none;
}

.custom-page .contact-us {
    border: unset !important;
    padding: unset !important;
    display: grid;
}

.custom-page .send-us-a-message-label {
    font-size: 20px;
}

.custom-page .send-us-a-message-label a{
    font-size: 20px;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .custom-page iframe {
        border: 0px none;
        margin-left: -40px;
        height: 1095px;
        margin-top: -97px;
        width: 370px;
        padding: 50px 0px 50px 50px;
        margin-right: 20px;
    }
}
/* End of send us a message in custom page */

section.hero .content .overlay .optimized-image img {
display: none;
}

/* Hide pwa if contact-us-page */
/* add if using iframe in custom pages */
body:has(.contact-us) .pwa-prompt {
    display: none;
}