@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

:root {
    --primary-color: #030102;
    --secondary-color: #393737;
    --bg-color: #fffaf8;
    --overlay-color: #2e2b1d69;
    --featured-item-section-bg: linear-gradient(to bottom, #ecebe4, #fffaf8);
    --button-hover-color: #393737;
    --button-border-radius: 0;
    --body-font: Inter Tight;
    --heading-font: Poppins;
    --text-color: #393737;
    --menu-item-color: #000000;
    --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: 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: 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;
}

/*** 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(--secondary-color);
}

/* Style the category name on the Menu Page */
.menu-page .category h2 {
    font-family: 'Poppins' !important;
    letter-spacing: 0 !important;
    font-weight: 500;
    color: var(--primary-color);
}

.menu-page p.price {
    color: var(--primary-color);
}

/* All caps for Featured Item name */
section.featured-items .featured-item-link .name {
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.hero .content .overlay .optimized-image img {
display: none;
}
section.covid-safe {
    padding: 0px;
}
section.covid-safe .guidelines {
    display: none !important;
}
section.covid-safe img {
    opacity: 0;
}

/* Custom Page */
/* why-fudds-page */
.custom-page {
    overflow: hidden;
}

.custom-page > div {
    display: grid;
    justify-items: center;
    position: relative;
}

.custom-page .why-fudds-page {
    text-align: center;
    padding: 50px 10px;
}

.custom-page .why-fudds-page .header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-page .why-fudds-page .header span {
    font-size: 25px;
    margin: 0px 45px;
}

.custom-page .why-fudds-page > p {
    margin-top: 30px;
    font-size: 70px;
    font-style: italic;
    transform: rotate(-10deg);;
}

.custom-page .why-fudds-page ul {
    max-width: 600px;
    margin-top: 50px;
}

.custom-page .why-fudds-page ul li {
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.custom-page .why-fudds-page ul li:nth-child(odd) {
    border-right: 1px solid transparent;
}

.custom-page .why-fudds-page ul li:nth-child(even) {
    border-left: 1px solid transparent;
}

.custom-page .why-fudds-page ul li:nth-child(odd)::after {
    width: 8px;
    height: 102%;
    position: absolute;
    background-color: var(--bg-color);
    top: .2px;
    right: 0px;
    content: '';
}

.custom-page .why-fudds-page ul li:nth-child(even)::before {
    width: 8px;
    height: 102%;
    position: absolute;
    background-color: var(--bg-color);
    top: .2px;
    left: 0px;
    content: '';
}

.custom-page .why-fudds-page ul li h4 {
    font-size: 40px !important;
    margin-bottom: 15px;
}

.custom-page .overlay-why-fudds-page {
    background: url(https://us-central1-restoplus-prod.cloudfunctions.net/imageServer/images/users/k5NhU6tQtrWZIOcQ2VZHQTxT9og1/images/custom_themes/why-fudds-page-background-five-percent.png);
    content: '';
    width: 100vw;
    height: 230vh;
    background-size: cover;
    position: absolute;
    background-position: right 10% bottom 45%;;
    background-attachment: scroll;
}

@media (max-width: 768px) {
    .custom-page .why-fudds-page .header span {
        font-size: 18px;
        margin: 0px 25px;
    }

    .custom-page .why-fudds-page > p {
        margin-top: 25px;
        font-size: 45px;
    }

    .custom-page .why-fudds-page ul li h4 {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .custom-page .why-fudds-page ul {
        margin-top: 30px;
    }

    .custom-page .why-fudds-page ul li {
        padding: 25px;
    }
}

/* fudds-faq-page */
.custom-page .fudds-faq-page ul {
    max-width: 800px;
}

.custom-page .fudds-faq-page ul li p span {
    font-weight: 700;
}

.custom-page .why-fudds-page ul li:nth-child(odd) > span {
    position: absolute;
    left: -25px;
    background: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #000000;
    display: inline-block;
    padding-top: 20px;
    top: 50%;
    font-size: 20px;
    font-weight: 700;
}

.custom-page .why-fudds-page ul li:nth-child(even) > span {
    position: absolute;
    right: -25px;
    background: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #000000;
    display: inline-block;
    padding-top: 20px;
    top: 50%;
    font-size: 20px;
    font-weight: 700;
}

.custom-page .fudds-faq-page > p {
    margin-top: 30px;
    font-size: 40px;
}

@media (max-width: 768px) {
    .custom-page .why-fudds-page ul li:nth-child(odd) > span {
        left: -5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding-top: 10px;
        top: -15px;
        font-size: 15px;
        font-weight: 600;
    }

    .custom-page .why-fudds-page ul li:nth-child(even) > span {
        right: -5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding-top: 10px;
        top: -15px;
        font-size: 15px;
        font-weight: 600;
    }

    .custom-page .fudds-faq-page > p {
        margin-top: 30px;
        font-size: 25px;
    }
}