/* Custom fonts - Use fonts.google.com */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Spectral:ital,wght@0,400;0,500;0,800;1,400;1,500;1,700&display=swap');

:root {
    --primary-color: #081418;
    --secondary-color: #081418;
    --bg-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 20%);
    --featured-item-section-bg: linear-gradient(180deg, rgba(8, 20, 24, 0.13489145658263302) 0%, rgba(255, 255, 255, 0) 48%);

    --button-hover-color: #6b5406;
    --button-border-radius: 0;

    --body-font: Spectral;
    --heading-font: Cinzel;
}


/* -------------------- Typography -------------------- */

/* Main font and website bg color */
body {
    font-family: var(--body-font);
    background: var(--bg-color);
}

/* Text links, including text in featured items */
a {
    color: inherit;
}

/* Navbar links */
.nav-item a {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

/* Store Name on navbar */
header .content .heading a {
    text-transform: none;
    font-weight: 400;
}

section.hero .content .overlay .tagline {
    font-weight: 400;
}

/* Headings - Page title, section headings, menu category title */
h1,
h2,
h3,
main .page-title {
    font-family: var(--heading-font);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Phone number in the Contact Us page - upon mouse hover */
section.contact-us .content address a:hover {
    text-decoration: underline;
}

/* -------------------- HERO BANNER -------------------- */

/* Hero banner overlay color and optional blur effect */
section.hero .content .overlay {
    background-color: var(--overlay-color);
    backdrop-filter: none;
}

/* -------------------- NAV BAR -------------------- */

/* Nav bar BG and text colors */
header,
header .mobile-menu,
header .content .mobile-menu {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/* -------------------- BUTTONS, TABS, ICONS -------------------- 
Do not style the <a> tag because it applies to the entire Featured Item card text */

/* Covid-Safe section icon color */
.guideline svg path {
    fill: var(--primary-color);
}

/* Border-radius & font-weight for ALL buttons and tabs */
a.button,
button,
header .content .cta .order-now,
header .content .cta .book-a-table,
section.hero .order-now,
section.hero .book-a-table,
section.featured-items .content .cta .view-menu,
footer .cta>a,
.loyalty-program-popup-widget .cta .loyalty-link,
.custom-website-popup-widget .cta .custom-message-link,
.collection-types button.collection-type,
.collection-types button.collection-type.selected {
    border-radius: var(--button-border-radius);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

/* Button in loyalty or custom pop-ups */
.loyalty-program-popup-widget .cta .loyalty-link,
.custom-website-popup-widget .cta .custom-message-link {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

/* Order Now & Book Table buttons on Top Header */
header .content .ctas .cta .order-now {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

header .content .ctas .cta .book-a-table {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

/* Order Now & Book Table buttons on Hero Banner */
section.hero .content .overlay .ctas .cta .order-now {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

section.hero .content .overlay .ctas .cta .book-a-table {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

/* View Menu button in Featured-Items section */
section.featured-items .content .cta .view-menu {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Style for View Menu button in Featured-Items section - MOBILE - 
maybe remove color stylings for this one in the default theme? */
@media (max-width: 767px) {
    section.featured-items .content .cta .view-menu {
        background-color: transparent;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }
}

/* Order Now button in Footer */
footer .store .content .cta>a {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

/* Collection Type Tab, when selected */
.collection-types button.collection-type.selected {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff;
}

/* Collection Type Tab */
.collection-types button.collection-type {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    text-decoration-line: none;
    color: var(--primary-color);
}

/* Style for ALL buttons upon mouse hover */
a.button:hover,
button:hover,
header .content .cta .order-now:hover,
header .content .cta .book-a-table:hover,
section.hero .content .ctas .cta .order-now:hover,
section.hero .content .ctas .cta .book-a-table:hover,
section.featured-items .content .cta .view-menu:hover,
footer .store .content .cta>a:hover {
    text-decoration: none;
    border-color: var(--button-hover-color);
    background-color: var(--button-hover-color);
}

/* -------------------- SECTION BACKGROUNDS -------------------- */

/* BG color for Featured Item and Special Note sections */
section.featured-items {
    background: var(--featured-item-section-bg);
}

/* BG color for Loyalty Card & Coupon sections */
section.loyalty-coupon .promo,
section.loyalty-coupon .promo:first-child {
    background: #ffffff;
}

/* BG color for Special Note section */
section.special-note {
    background-image: url(https://i.ibb.co/Rh6LFpm/Foot-Note-Banner-The-Front-Page-1.png);
    background-size: cover;
}

/* BG color for Footer */
footer {
    background: var(--secondary-color);
}
/* Remove logo only on hero banner */
section.hero .content .overlay img {
    display: none;
}
section.hero .content .overlay .optimized-image img {
display: none;
}


/* -------------------- 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: 1080px;
    margin: 40px auto;
    width: 100%;
    height: auto;
}

/* 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;
}

.custom-page .send-us-a-message-label {
    font-size: 24px;
    line-height: 28px;
    margin-top: 30px;
    color: #000000;
}

.custom-page iframe {
    border: 0px none;
    margin-left: -60px;
    height: 1170px;
    margin-top: -350px;
    width: 700px;
    padding: 50px;
}

