@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
:root {
    --primary-color: #080808;
    --secondary-color: #84b392;
    --bg-color: #080808;
    --overlay-color: #2e2b1d69;
    --featured-item-section-bg: linear-gradient(to bottom, #ecebe4, #fffaf8);
    --button-hover-color: #c72529;
    --button-border-radius: 5px;
    --body-font: Montserrat;
    --heading-font: Montserrat;
    --text-color: #faf6f8;
    --menu-item-color: #c72529;
    --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);
    text-transform: uppercase;
    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: 14px !important;
}

.button:hover,
.navbar .order-now-button:hover,
.navbar .book-a-table-button:hover,
section.featured-items .content .view-menu-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 .content .mobile-menu {
    background-color: var(--primary-color) !important;
    color: #FFFFFF;
}

.navbar .nav-item .link:hover {
    text-decoration: none !important;
    border-bottom: 4px solid #FFFFFF !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);
}

footer .order-now-button {
    background-color: transparent !important;
    border: 1px solid #FFFFFF !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: #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;
    opacity: 0.3;
}

section.hero .button:hover {
    color: #FFFFFF !important;
    background-color: var(--button-hover-color) !important;
    border-color: var(--button-hover-color) !important;
    opacity: 1;
}
/*** About Us section */
section.about-us {
    color: #000000;
}

/*** Covid Safe section */
section.covid-safe .guideline path {
    fill: var(--primary-color);
}

/*** Featured Item section */
section.featured-items {
    background: var(--featured-item-section-bg);
    color: #000000;
}

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;
}

/*** Loyalty Coupon section */
section.loyalty-coupon {
    color: #000000;
}

/*** Special Note section */
section.special-note {
    background-color: var(--secondary-color);
    background-image: var(--special-note-bg-image);
    background-size: cover;
    color: #000000;
}

/* -------------------- 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;
}

section.menu .categories .category .items .item .view-more-button {
    color:#faf8f8 !important;
    border-color: #faf8f8 !important;
}

/* -------------------- Contact Us Page -------------------- */
section.contact-us .content address .link {
    color: #FFFFFF;
}

/* -------------------- Custom Page -------------------- */
.custom-page {
    margin: 0px auto;
    max-width: 1280px;
    padding: 0 24px;
    display: grid;
    justify-items: center;
    color: var(--text-color) !important;
}

/* Images */
.custom-page img {
    max-width: 1280px;
    margin: 40px auto;
    width: 100%;
    height: auto;
}

/* Buttons - can use var(--primary-color) for BG */
.custom-page .button {
    background-color: var(--secondary-color);
    padding: 8px 16px;
}

/* Typography - Page title */
.custom-page h1 {
    font-family: var(--heading-font);
    font-size: 56px !important;
    margin-top: 120px;
    margin-bottom: 24px;
    text-align: center;
    color: inherit;
}

/* Typography - Subheadings */
.custom-page h2,
.custom-page h3,
.custom-page h4 {
    margin-bottom: 16px;
    font-family: var(--body-font);
}

/* Typography - Body */
.custom-page p {
    text-align: center;
    max-width: 900px;
}

.custom-page a:link {
    text-decoration: none;
}

/* Page title font on mobile */
@media (max-width: 768px) {
    .custom-page h1 {
        font-size: 32px !important;
    }
}
section.covid-safe .guidelines {
    display: none !important;
}
/* -------------------- End Custom Page -------------------- */

/* Body */
p {
    font-size: 18px;
    font-weight: 300;
}

a,
button,
.button,
footer a i {
    transition: cubic-bezier(.54, .38, .14, 1.04) !important;
    transition-duration: 500ms !important;
}

/* .nav-items .nav-item .link:hover {
    border-bottom: 1px solid transparent !important;
} */
section.hero .content .overlay .optimized-image img {
display: none;
}
section.hero .button {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
}