@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Mukta&family=Signika+Negative&display=swap');
:root {
    --primary-color: #be1515;
    --secondary-color: #be1515;
    --bg-color: #f7f6f4;
    --overlay-color: #2e2b1d69;
    --featured-item-section-bg: linear-gradient(to bottom, #d83838, #be1515);
    --button-hover-color: #be1515;
    --button-border-radius: 0;
    --body-font: Signika Negative;
    --heading-font: Chelsea Market;
    --text-color: #030102;
    --menu-item-color: #22265fec;
    --special-note-bg-image: url('');
}

/* -------------------- Base -------------------- */
body {
    background: var(--bg-color);
    font-family: var(--body-font);
    font-weight: 300;
    color: var(--text-color);
}

/* -------------------- Typography -------------------- */
.heading,
.page-title {
    font-family: var(--heading-font);
    letter-spacing: 2px;
    font-weight: 700;
}

/* -------------------- Buttons, Links, Icons -------------------- */
.button {
    border-radius: var(--button-border-radius) !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
}

.button:hover,
.navbar .order-now-button:hover,
.navbar .book-a-table-button:hover,
section.featured-items .content .view-menu-button:hover {
    color: #accdf3 !important;
    background-color: var(--button-hover-color) !important;
    border-color: var(--button-hover-color) !important;
}

.link:hover {
    text-decoration: underline;
}

/* -------------------- Navbar -------------------- */
.navbar,
.navbar .content .mobile-menu,
.custom-navbar {
    background-color: var(--primary-color) !important;
    color: #FFFFFF;
}

.custom-navbar .content {
    background-color: #CACACA;
}

.custom-navbar .heading {
    background-image: url("https://firebasestorage.googleapis.com/v0/b/restoplus-public/o/public%2Fimages%2FLogo%20-%20Meadows%20Hotel.png?alt=media&token=4db31d64-bdee-46e6-bc2f-4e93d436e84c");
    ;
    background-position: center;
    background-position-x: 0;
    background-repeat: no-repeat;
    background-size: contain;
    height: 38px;
    align-self: center;
}

.custom-navbar .heading .image {
    opacity: 0;
}

.navbar .nav-item .link:hover {
    text-decoration: none !important;
    border-bottom: 4px solid var(--button-hover-color) !important;
}

.navbar .order-now-button {
    border: 1px solid #FFFFFF !important;
    background: transparent !important;
    color: #ffffff !important;
}

.navbar .book-a-table-button {
    border: 1px solid #FFFFFF !important;
    background: transparent !important;
    color: #ffffff !important;
}

/* -------------------- Footer -------------------- */
footer {
    background: var(--primary-color);
    color: #FFFFFF !important;
}

footer .content {
    color: white !important;
}

footer .order-now-button {
    background-color: transparent !important;
    border: 1px solid #FFFFFF !important;
    color: white !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: #FFFFFF;
}

/* -------------------- Common - Page -------------------- */
.collection-type-button {
    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) !important;
    backdrop-filter: none;
}

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;
}

@media (min-width: 768px) {
    section.special-note {
        margin-top: 100px;
    }

    section.special-note .content .offset {
        top: -50px;
    }
}

/*** Covid Safe section */
section.covid-safe .guidelines {
    display: none !important;
}

/*** Featured Item section */
section.featured-items {
    background: var(--featured-item-section-bg);
}

section.featured-items .info {
    background-color: var(--bg-color) !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: #ffffff;
}

/*** Special Note section */
section.special-note {
    background-color: var(--secondary-color);
    background-image: var(--special-note-bg-image);
    background-size: cover;
}

/* -------------------- Menu Page -------------------- */
.menu-page .items .name {
    color: var(--menu-item-color);
}

/* Style the category name on the Menu Page */
.menu-page .category h2 {
    font-family: 'Ms Madi' !important;
    text-transform: none;
    letter-spacing: 0 !important;
    font-weight: 500;
}

/* All caps for Featured Item name */
section.featured-items .featured-item-link .name {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Remove logo only on hero banner */
section.hero .content .overlay .imgix img {
    display: none;
}

/* -------------------- Custom Page -------------------- */
.custom-page {
    margin: 0px auto;
    margin-bottom: 24px;
    width: 100%;
    display: grid;
    justify-items: center;
}

/* Responsive images with max width */
.custom-page img {
    max-width: 800px;
    margin: 40px auto;
    width: 100%;
    height: auto;
}

/* Button */
.custom-page .button {
    background-color: var(--primary-color);
    padding: 8px 16px;
}


/* Typography - Page title */
.custom-page h1 {
    font-size: 56px !important;
    margin-top: 10%;
    margin-bottom: 24px;
    text-align: center;
}

/* Typography - Headings */
.custom-page h2,
.custom-page h3,
.custom-page h4 {
    margin-bottom: 16px;
}

/* Typography - Body */
.custom-page p {
    text-align: center;
    max-width: 900px;
    color: #140e11;
    font-size: 23px;
}

/* Links and Button text */
.custom-page a:link {
    color: white;
    text-decoration: none;
}

.custom-navbar .nav-item .link {
    color: #21201E !important;
}

.custom-navbar .nav-item .selected {
    border-bottom: 4px solid #21201E !important;
}

.custom-navbar .cta .button {
    color: #21201E !important;
}

/* Banner */
.custom-page .banner {
    height: auto;
    width: 100%;
    overflow: hidden;
}

.custom-page .banner img {
    object-fit: cover;
    margin: 0px;
    height: unset;
    max-width: unset;
}


#body-shop {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-gap: 50px;
    grid-template-areas:
        "e f";
    grid-template-columns: 1fr 1fr;
}

.custom-page-content {
    font-family: var(--body-font);
    text-align: center;
    color: var(--text-color);
}

#shop-catalogue {
    grid-area: e;
    justify-self: flex-end;
    width: 100%;
}

#shop-legends {
    grid-area: f;
    justify-self: flex-start;
    width: 100%;
}

#shop-catalogue img {
    max-width: 480px;
}

#shop-legends img {
    max-width: 480px;
}

@media (max-width: 768px) {
    .custom-page h1 {
        font-size: 32px !important;
    }

    #body-shop {
        display: unset;
    }

    .custom-navbar {
        background-color: #CACACA !important;
    }

    .custom-navbar .open .heading {
        background: unset;
    }

    .custom-navbar .open .link {
        color: #FFFFFF !important;
    }

    .custom-navbar .cta .button {
        color: #FFFFFF !important;
    }

    .custom-navbar .mobile-menu-button svg path {
        stroke: #21201E !important;
    }
}

.collection-type-schedule::after {
    content: '';
    margin-top: 50px;
    width: 100%;
    height: 280px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

section.covid-safe {
    padding: 0px;
}

section.covid-safe .guidelines {
    display: none !important;
}

section.covid-safe img {
    opacity: 0;
}
section.covid-safe {
    padding: 0px;
}
section.covid-safe .guidelines {
    display: none !important;
}
section.covid-safe img {
    opacity: 0;
}
section.hero .button {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
}
section.hero .content .overlay .optimized-image img {
display: none;
}
/* -------------------- End of Custom Page CSS -------------------- */