/* Custom fonts - Use fonts.google.com */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary-color: #064986;
    --secondary-color: #e99220;
    --bg-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.582);
    --featured-item-section-bg: linear-gradient(180deg, rgba(8, 20, 24, 0.13489145658263302) 0%, rgba(255, 255, 255, 0) 48%);

    --button-hover-color: #e9801e;
    --button-border-radius: 0;

    --body-font: Roboto;
    --heading-font: Roboto;
}

/* -------------------- 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('./Foot-Note-Banner-Sotos-Fish-Shop-1.png');
    background-size: cover;
    background-position: center;
}

/* BG color for Footer */
footer {
    background: var(--secondary-color);
}

/* Remove logo only on hero banner */
section.hero .content .overlay .imgix img {
    display: none;
}
.promo .cta a {
    color: #000 !important;
}
