@import url('https://fonts.googleapis.com/css2?family=Domine&family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {
    --primary-color: #181818;
    --secondary-color: #181818;
    --bg-color: #F0EEDD;
    --overlay-color: #00000033;
    --text-color: #f3f0ed;
    --button-hover-color: #a87c2f;
    --button-border-radius: 2px;
    --body-font: Domine;
    --heading-font: Archivo Black;

    /* Optional below */
    --navbar-bg: #a87c2f;
    --menu-item-color: #292725 !important;
    /* for About, LoyaltyCoupon, Special Note text bg */
    --card-bg: var(--primary-color);
    --card-border-radius: 4px;
    --featured-item-section-bg: var(--primary-color);
    --featured-item-card-bg: var(--secondary-color);
    --featured-item-card-text: var(--text-color);
    --footer-bg: #292725;
}

/* -------------------- 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: grid!important;
}

section.hero .overlay img {
    display: none;
}

section.hero .button {
    background-color: #C89237 !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;
}

section.delivery-areas {
    color: #0c0c0c;
}

/*** 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: #FFFFFF;
}

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 {
    color: #0a0a0a;
}

.menu .items .name {
    color: #0a0a0a !important;
}

.menu h1.page-title {
    color: #060305;
}

.menu p.description {
    color: #0a0a0a;
}

.menu span.currency-symbol {
    color: #C89237;
} 

.menu span.amount {
    color: #C89237;
}



/* !!!! 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;
}

.website-popup-modal .info {
    color:#0a0a0a
}

/* -------------------- 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;
}
section.covid-safe {
    padding: 0px;
}
section.covid-safe .guidelines {
    display: none !important;
}
section.covid-safe img {
    opacity: 0;
}

.react-multi-carousel-dot button {
    opacity: .80;
    background-color: #FFFFFF;
}

/* Update special note */
section.special-note .content .offset {
    background-color: #181818;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    top: -50px !important;
}

/* Update trading hours */
section.section.trading-hours {
    color: #060305;
}

/* Update contact us */
section.contact-us {
    color: #060305;
}

section.contact-us a.link.phone-number-link {
    color: #0a0a0a;
}

/* -------------------- Gallery -------------------- */
.gallery-page .content {
    color: #0a0a0a
}

/* -------------------- 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;
}

/* Images */
.custom-page img {
    max-width: 1280px;
    margin: 40px auto;
    width: 100%;
    height: auto;
}

.custom-page .next-page {
    margin-top: unset;
}

/* Buttons - can use var(--primary-color) for BG */
.custom-page .button {
    background-color: #030102;
    padding: 8px 16px;
}

/* Typography - Page title */
.custom-page h1 {
    font-size: 56px !important;
    margin-top: 120px;
    margin-bottom: 24px;
    text-align: center;
    color: #000000;
}

/* Typography - Subheadings */
.custom-page h2,
.custom-page h3,
.custom-page h4 {
    margin-top: 25px;
    margin-bottom: 18px;
    color: #000000;
    font-weight: 700;
}

/* Typography - Body */
.custom-page p {
    text-align: center;
    max-width: 900px;
}

.custom-page a:link,
.custom-page a:visited,
.custom-page a:focus {
    text-decoration: none;
    color: #C89237;
    font-size: 24px;
    line-height: 28px;
}

.custom-page .send-us-a-message-label {
    font-size: 24px;
    line-height: 28px;
    margin-top: 30px;
    color: #000000;
}

.custom-page .menu-title {
    margin-top: 30px;
}

.custom-page .spacer-100 {
    height: 100px;
}

.custom-page .spacer-50 {
        height: 50px;
}

.custom-page .catering-image {
    max-width: 850px;
}

.custom-page body {
    background-color: #00000000 !important;
}

.custom-page iframe {
    border: 0px none;
    margin-left: -60px;
    height: 1050px;
    margin-top: -350px;
    width: 700px;
    padding: 50px;
}

.custom-page .map {
    display: none;
}

.custom-page div {
    border: unset !important;
}

.custom-page .menu-download {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
    gap: 40px;

}

.custom-page .menu-download .download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 375px;
    position: relative;
}

.custom-page .menu-download .download .title {
    z-index: 1;
}

.custom-page .menu-download .download .link {
    z-index: 1;
    padding: 10px;
    border: 1px solid #FFFFFF50;
    border-radius: 12px;
    color: #FFFFFF;
    background-color: #C89237;
}

.custom-page .menu-download .download .background {
    background: #00000000 url(https://restoplus-prod.imgix.net/users/1yt6JcJpH5VTJQboWkZ115LapYC3/images/logos/sbfrv1awv.jpg);
    background-repeat: no-repeat;
    background-size:contain;   
    width: 375px;
    height: 375px;
    z-index: 0;
    position: absolute;
    opacity: .1;
    border-radius: 50%;
    box-shadow: rgb(0 16 29) 1.95px 1.95px 2.6px;
    border: 1px solid #FFFFFF !important;
}



.franchise-image {
    box-sizing:border-box;
    background-image: url('https://restoplus-prod.imgix.net/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/custom_themes/amalfi-pizza-and-pasta-franchise-banner-desktop.jpg');
    max-width: 1280px !important;
    max-height: 329px !important;
    width: 100%;
    height: 100%;
}

.tipping-service-page img {
    max-width: 800px;
    margin: 40px auto;
    width: 100%;
    height: auto;
}


/* Page title font on mobile */
@media (max-width: 768px) {
    custom-navbar .content {
        padding: 0 2px;
    }

    .custom-navbar .content .ctas {
        gap: unset;
    }

    .custom-page h1 {
        font-size: 32px !important;
    }

    .custom-page iframe {
        border: 0px none;
        height: 950px;
        margin-top: -300px;
        max-width: 100%;
        width: 768px;
        margin-left: unset;
        padding: unset;

    }

    .custom-page .menu-download {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .custom-page .menu-download .download .link {
        font-size: 22px;
    }

    .custom-page .menu-download .download .background {
        border-radius: unset;
        width: 325px;
        height: 325px;
    } 

    .franchise-image {
        max-width: 768px !important;
        max-height: 768px !important;
        content: url('https://restoplus-prod.imgix.net/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/custom_themes/amalfi-pizza-and-pasta-franchise-banner-mobile.jpg');
    }
}

@media (max-width: 375px) {
    .custom-page {
       padding: unset;
    }

    .custom-page p {
        margin: 30px 20px 0px 20px ;
    }
}
