@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #e08720;
    --secondary-color: #e08720;
    --bg-color: rgb(247, 246, 244);
    --overlay-color: #00000033;
    --text-color: #070707;
    --button-hover-color: #d85a20;
    --button-border-radius: 2px;
    --body-font: Montserrat;
    --heading-font: Montserrat;

    /* Optional below */
    --navbar-bg: #fcfaf8;
    --menu-item-color: var(--button-hover-color);
    /* for About, LoyaltyCoupon, Special Note text bg */
    --card-bg: var(--primary-color);
    --card-border-radius: 4px;
    --featured-item-section-bg: #EDEAE8;
    --featured-item-card-bg: var(--secondary-color);
    --featured-item-card-text: var(--text-color);
    --footer-bg: #d85a20;
}

/* -------------------- Base -------------------- */
body {
    background: var(--bg-color);
    font-family: var(--body-font);
    color: var(--text-color);
}

/* -------------------- Typography -------------------- */
.heading,
.page-title {
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* -------------------- Buttons, Links, Icons -------------------- */
a {
    color: inherit;
}

.button {
    border-radius: var(--button-border-radius) !important;
    border: none !important;
}

.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 {
    background: var(--navbar-bg);
    color: #FFFFFF;
}

.navbar .nav-item .link:hover {
    text-decoration: none !important;
    border-bottom: 4px solid #fff !important;
}

.navbar .order-now-button {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

.navbar .book-a-table-button {
    border: 1px solid #ffffff !important;
}

/* -------------------- Footer -------------------- */
footer {
    background: var(--footer-bg);
}

footer .order-now-button {
    background-color: var(--primary-color) !important;
    color: inherit !important;
    /* added by Joy */
}

/* -------------------- 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 var(--primary-color) !important;
    background-color: transparent;
    color: inherit;
}

.collection-type-button.selected {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* -------------------- Home Page -------------------- */
/*** Hero section */
section.hero .overlay {
    background: var(--overlay-color);
    display: none !important;
}

section.hero .button {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !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: var(--primary-color);
}

/*** About Us card */
section.about-us .content .info {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
}

/*** Special Note card */
section.special-note .content .offset {
    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: #000000;
}

section.featured-items .content .info {
    background-color: var(--featured-item-card-bg) !important;
    color: var(--featured-item-card-text);
}

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-size: cover;
    background-color: var(--secondary-color);
}

section.whats-new .read-more-link {
    color: inherit !important;
}


/* -------------------- Menu Page -------------------- */
.menu-page .category h2 {
    font-family: var(--heading-font);
}

.menu .items .name {
    color: var(--menu-item-color);
}



/* !!!! REMOVE BELOW AFTER PR#21118 HAS BEEN DEPLOYED !!!! */

/* -------------------- Typography -------------------- */
h2 {
    font-family: var(--heading-font);
}

/* -------------------- Buttons, Links, Icons -------------------- */

button {
    border-radius: var(--button-border-radius) !important;
    border: none !important;
}

button:hover {
    color: #FFFFFF !important;
    background-color: var(--button-hover-color) !important;
    border-color: var(--button-hover-color) !important;
}

a:hover {
    text-decoration: underline;
}

/* -------------------- Navbar -------------------- */
header {
    background-color: var(--navbar-bg);
    color: #FFFFFF;
}

header a {
    text-decoration: none !important;
}

header .nav-item a:hover {
    border-bottom: 4px solid #fff !important;
}

header .order-now {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

header .book-a-table {
    border: 1px solid #ffffff !important;
}

/* -------------------- Footer -------------------- */
footer .button:hover {
    text-decoration: none !important;
}

/* -------------------- Popup - Custom Message and Loyalty Program -------------------- */
.website-popup-modal .dismiss path {
    stroke: var(--secondary-color);
}

.website-popup-modal a {
    background-color: var(--primary-color) !important;
}

.website-popup-modal a:hover {
    text-decoration: none;
}

/* -------------------- Common - Page -------------------- */
.collection-type {
    border: 1px solid var(--primary-color) !important;
    background-color: transparent !important;
    color: inherit;
}

.collection-type.selected {
    background-color: var(--primary-color) !important;
    color: #ffffff;
}

/* -------------------- Home Page -------------------- */

section.hero .button:hover {
    text-decoration: none;
}

section.featured-items .view-menu {
    background-color: var(--secondary-color) !important;
}

section.featured-items a:hover {
    text-decoration: none !important;
}

section.whats-new .read-more:hover {
    background-color: transparent !important;
    color: inherit !important;
    text-decoration: underline;
}
/* Remove logo only on hero banner */
section.hero .content .overlay .imgix img {
    display: none;
}

.navbar .nav-item a {
    font-size: 18px;
}

/* font sizes */

h2 {
    font-size: 34px;
}

.menu-page .items .item .description {
    font-size: 18px;
}

.menu-page .items .item .price {
    font-size: 18px;
}

section.about-us .content .restaurant-store-name,
section.contact-us .content .restaurant-store-name,
section.store .info .restaurant-store-name {
    font-size: 18px;
}

section.about-us .info address,
section.contact-us .content a,
section.store .info address {
    font-size: 16px !important;
}

section.about-us .content p {
    font-size: 18px;
}

section.restoplus .powered-by p,
section.restoplus .more a,
section.restoplus .sitemap-links a {
    font-size: 16px !important;
}

/* button */

section.store .order-now-button {
    color: var(--button-hover-color) !important;
    border: 1px solid transparent !important;
}

section.store .order-now-button:hover {
    color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

.navbar .order-now-button {
    border: 1px solid #FFFFFF !important;
}

section.menu .collection-type-button {
    font-size: 18px;
}

/* Custom Page*/
.custom-page {
    max-width: 100%;
    display: grid;
    justify-items: center;
    color: #FFFFFF !important;
    margin: unset !important;
    background-color: var(--bg-color);
}

.catering-page {
    padding: unset;
}


/* Custom Page - Download Menu */

.custom-page .download-menu {
    display: grid;
    justify-items: center;
    margin-bottom: 50px;
}

.custom-page .downloads {
    display: grid;
    justify-items: center;
    grid-template-columns: max-content max-content max-content max-content;
    margin: 70px 10px;
    gap: 20px;
}

.custom-page .downloads .download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 310px;
    position: relative;
}
.custom-page .download-menu h2.title{
    color: #10031b;
}

.custom-page .downloads .download h2.title {
    z-index: 1;
    color: #10031b;
    margin-top: 100px;

}

.custom-page .downloads .download h3.title {
    color: #10031b;
    z-index: 1;
    font-size: 21px;
}

.custom-page .downloads .download .link {
    z-index: 1;
    padding: 10px;
    border: 1px solid #FFFFFF50;
    border-radius: 12px;
    color: #FFFFFF;
    background-color: #E73232;
    margin-top: 60px;
}

.custom-page .downloads .download .background {
    background: #00000000 url(https://restoplus-prod.imgix.net/users/1yt6JcJpH5VTJQboWkZ115LapYC3/images/logos/21e8s9ngpv.png?auto=compress&w=325);
    background-repeat: no-repeat;
    background-size:contain;   
    width: 300px;
    height: 300px;
    z-index: 0;
    position: absolute;
    opacity: .45;
    box-shadow: rgb(0 16 29) 1.95px 1.95px 2.6px;
    border: 1px solid #FFFFFF !important;
    border-radius: 10px;
}

.custom-page .download .subtitle {
    color: #24264e;
    font-size: 13px;
    text-align: center;
}

.custom-page .downloads .download .download-margin {
    margin-top: 80px;
}

.spacer-50 {
    margin-top: 50px;
}

@media (max-width: 768px) {

    .custom-page .downloads {
        grid-template-columns: 1fr;
        margin: 25px 0px;
    }

    .custom-page .download-menu h2.title {
        font-size: 28px;
    }


    .custom-page .downloads .download .subtitle {
        color: #000000;
        background-color: #FFFFFF;
        padding: 0px 5px;
    }

    .custom-page .downloads .download .link {
        font-size: 22px;
    }

    .custom-page .downloads .download .background {
        width: 310px;
        height: 310px;
    } 

    .custom-navbar .content .mobile-menu .heading .restaurant-store-link {
        width: 90vw;
    }

}

@media (max-width: 500px) {
    .custom-page .downloads {
        display: grid;
    }

    .custom-navbar .content .mobile-menu .mobile-menu-close-button {
        margin-right: 50px;
    }

    .custom-navbar .content .mobile-menu{
        padding-left: 0px;
    }

    .custom-navbar .content .mobile-menu .heading,
    .custom-navbar .content .mobile-menu nav,
    .custom-navbar .content .mobile-menu .social-links,
    .custom-navbar .content .mobile-menu .ctas,
    .custom-navbar .content .mobile-menu .powered-by {
        width: 100vw!important;
    }

}
/* End of Custom Page - Download Menu */

/* Custom Page - Table Booking */

.custom-page iframe {
    border: 0px none;
    height: 600px;
    width: 800px;
}


@media (max-width: 500px) {
    .custom-page iframe {
        height: 85vh;
        width: 90vw;
    }
}
/* End of Custom Page - Table Booking */