@import url('https://fonts.googleapis.com/css2?family=Mea+Culpa&family=Oswald:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+SC:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #030102;
    --secondary-color: #2b2927;
    --bg-color: #fffaf8;
    --overlay-color: #18171669;
    --featured-item-section-bg: linear-gradient(to bottom, #ecebe4, #fffaf8);
    --button-hover-color: #e9d30f;
    --button-border-radius: 0;
    --body-font: Oswald;
    --heading-font: Alumni Sans SC;
    --text-color: #030102;
    --menu-item-color: #d6ba1b;
    --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);
}

/* -------------------- 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: #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 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);
}

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: #FFFFFF !important;
    color: #000000 !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);
}

/*** Featured Item section */
section.featured-items {
    background: var(--featured-item-section-bg);
}

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);
}

.menu-page .collection-types .pickup {
    display: none;
}

/* Style the category name on the Menu Page */
/* .menu-page .category h2 {
} */

/* 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-bottom: 24px;
    width: 100%;
    display: grid;
    justify-items: center;
}

/* Responsive images with max width */
.custom-page img {
    max-width: 750px;
    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;
    font-family: 'Cormorant Garamond', serif;
    color: #140e11;
    font-size: 23px;
}

/* Links and Button text */
.custom-page a:link {
    color: white;
    text-decoration: none;
}

/* Banner */
.custom-page .banner {
    height: auto;
    width: 100%;
    overflow: hidden;
}

.custom-page .menu-title {
    margin-top: 30px;
}

.custom-page .bottom-spacer {
    height: 100px;
}

@media (max-width: 768px) {
    .custom-page h1 {
        font-size: 24px !important;
    }

    .custom-page .bottom-spacer {
        height: 35px;
    }

}

/*** Covid Safe section */
section.covid-safe {
    padding-bottom: 0px!important;
}

section.covid-safe .guideline path {
    fill: var(--primary-color);
}

section.covid-safe .content .image {
    display: none;
}

section.covid-safe .content .info {
    display: none;
}

section.covid-safe .content .info .heading,
section.covid-safe .content .info .message{
    display: none;

}

section.covid-safe .content {
    height: 513px;     /*329*/
    padding: unset;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    overflow: hidden;
    max-width: 2000px;
}

section.covid-safe .info {
    max-width: 1280px;
    width: 100%;
    padding: unset!important;
}

section.covid-safe .content::before {
    position: absolute;
    background-image: url('https://restoplus-prod.imgix.net/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/covid_safe/rusco-brusco-covid-section-testimonies-desktop.jpg');
    background-repeat: no-repeat;
    background-size:100%;
    display: block;
    content: '';
    max-width: 2000px !important;
    max-height: 513px !important; 
    /*329px*/
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    section.covid-safe .content {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .custom-page h1 {
        font-size: 32px !important;
    }

    section.covid-safe {
        padding: 0px;
    }

    section.covid-safe .content {
    height: 350px;
    margin-top: 40px;
    margin-bottom: 0px;
}

    /* covid section */
    section.covid-safe .content::before {
        background-image: url('https://restoplus-prod.imgix.net/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/covid_safe/rusco-brusco-covid-section-testimonies-mobile.jpg');
        max-width: 768px !important;
        max-height: 768px !important;
    }
}

@media (max-width: 375px) {
    section.covid-safe .content {
        height: 350px;
        margin-top: 30px;
        margin-bottom: 0px;
    }
}
/* End of covid section */

/* Tigella or Crescentina */
.custom-page .tigella {
    max-width: 1280px;
}

.custom-page .recipe-menu .recipe-image {
    max-width: 1200px;
    margin: 40px auto;
    width: 100%;
}

@media (max-width: 375px) {
    .custom-page .recipe-menu .recipe-image {
        margin: 0px auto;

    }
    .custom-page:has(.recipe-image) {
        margin-bottom: unset;
    }
}


/* End of tigella or crescentina */
section.hero .content .overlay .optimized-image img {
display: none;
}