/* ==========================================================================
   Blend — brand theme layer
   --------------------------------------------------------------------------
   Refinement layer on top of MDB (static/vendor/css/mdb.min.css).
   Do NOT edit mdb.min.css. All brand styling lives here.

   Palette sampled directly from the supplied logo files:
     - Navy   #103860  (BLEND wordmark, blend-logo-dark.png) — primary anchor
     - Powder #b0c8e8  (blend-logo-light.png, for dark backgrounds)
     - Gold   #b89048  (B monogram, blend-logo-footer.png) — accent only
   The original site also used navy #173a64; both navies are kept in family.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts — existing brand display face (NORD); body stays Roboto
   -------------------------------------------------------------------------- */
@font-face {
    font-family: "NORD";
    src: url("../fonts/Nord-Thin.woff2") format("woff2"),
         url("../fonts/Nord-Thin.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NORD";
    src: url("../fonts/Nord-Light.woff2") format("woff2"),
         url("../fonts/Nord-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NORD";
    src: url("../fonts/Nord-Regular.woff2") format("woff2"),
         url("../fonts/Nord-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NORD";
    src: url("../fonts/Nord-Medium.woff2") format("woff2"),
         url("../fonts/Nord-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NORD";
    src: url("../fonts/Nord-Bold.woff2") format("woff2"),
         url("../fonts/Nord-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   Palette + MDB variable mapping
   -------------------------------------------------------------------------- */
:root {
    /* Brand navy */
    --blend-navy: #143a63;          /* primary anchor (logo family) */
    --blend-navy-deep: #0d2842;     /* footer, deepest feature sections */
    --blend-navy-light: #1d4d78;    /* hover / lighter navy surface */
    --blend-navy-softline: #2b567f; /* borders on navy */
    --blend-powder: #b0c8e8;        /* light logo tint, accents on navy */

    /* Warm neutrals */
    --blend-white: #f7f4ee;         /* soft white — main background */
    --blend-white-pure: #ffffff;    /* cards / crisp surfaces */
    --blend-white-muted: #ece7dd;   /* subtle warm surface */

    /* Gold accent */
    --blend-gold: #b89048;
    --blend-gold-light: #cda65f;
    --blend-gold-dark: #cda65f;

    /* Text */
    --blend-text-dark: #17212b;
    --blend-text-muted: #626d78;

    /* Lines */
    --blend-border-light: rgba(20, 58, 99, 0.12);
    --blend-border-gold: rgba(184, 144, 72, 0.38);

    /* Elevation (restrained) */
    --blend-shadow-sm: 0 1px 2px rgba(13, 40, 66, 0.06),
                       0 2px 8px rgba(13, 40, 66, 0.05);
    --blend-shadow-md: 0 6px 20px rgba(13, 40, 66, 0.08),
                       0 2px 6px rgba(13, 40, 66, 0.06);

    /* ---- MDB theme tokens ---- */
    --mdb-primary: var(--blend-navy);
    --mdb-primary-rgb: 20, 58, 99;

    --mdb-secondary: var(--blend-gold);
    --mdb-secondary-rgb: 184, 144, 72;

    --mdb-dark: var(--blend-navy-deep);
    --mdb-dark-rgb: 13, 40, 66;

    --mdb-body-bg: var(--blend-white);
    --mdb-body-color: var(--blend-text-dark);
    --mdb-body-color-rgb: 23, 33, 43;

    --mdb-emphasis-color: var(--blend-navy);
    --mdb-secondary-color: var(--blend-text-muted);
    --mdb-tertiary-color: var(--blend-text-muted);

    --mdb-link-color: var(--blend-navy);
    --mdb-link-color-rgb: 20, 58, 99;
    --mdb-link-hover-color: var(--blend-gold-dark);

    --mdb-border-color: var(--blend-border-light);
    --mdb-border-radius: 0.65rem;
    --mdb-border-radius-lg: 0.9rem;
    --mdb-border-radius-sm: 0.4rem;

    --mdb-heading-color: var(--blend-navy);

    --mdb-font-family-sans-serif: "Roboto", system-ui, -apple-system,
        "Segoe UI", sans-serif;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

/* --------------------------------------------------------------------------
   Base typography & rhythm
   -------------------------------------------------------------------------- */
body {
    margin: 0;
    background-color: var(--blend-white);
    color: var(--blend-text-dark);
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Headings keep the original Roboto/MDB defaults; only the brand colour is set. */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4 {
    color: var(--blend-navy);
}

p { color: var(--blend-text-dark); }
.lead { color: var(--blend-text-muted); font-weight: 400; }

.text-muted { color: var(--blend-text-muted) !important; }

a {
    color: var(--blend-navy);
    text-decoration: none;
    transition: color 180ms ease, opacity 180ms ease;
}
a:hover { color: var(--blend-gold-dark); }

::selection {
    background: rgba(184, 144, 72, 0.25);
    color: var(--blend-navy-deep);
}

hr.hr, .hr {
    color: var(--blend-navy);
    opacity: 0.14;
}

/* NORD display face — the existing hero identity */
.f-secondary {
    font-family: "NORD", sans-serif;
    font-weight: lighter;
}

/* Small uppercase eyebrow / rule */
.blend-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--blend-gold-dark);
    font-family: "Roboto", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.blend-eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: var(--blend-gold);
}

/* Section spacing helpers */
.section-pad { padding-block: clamp(3rem, 6vw, 5.5rem); }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar.bg-white,
.navbar-light.bg-white {
    background-color: rgba(247, 244, 238, 0.72) !important;
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--blend-border-light);
    box-shadow: none;
    padding-block: 0.65rem;
}

.navbar-brand img { height: 46px; width: auto; }

.navbar .nav-link {
    position: relative;
    color: var(--blend-navy);
    font-family: "NORD", sans-serif;
    font-weight: 300;
    padding-inline: 0.9rem;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus { color: var(--blend-gold-dark); }

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
    height: 1.5px;
    background: var(--blend-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 200ms ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--blend-navy); }

.navbar-toggler {
    color: var(--blend-navy);
    border: 1px solid var(--blend-border-light);
    box-shadow: none;
}

.dropdown-menu {
    border: 1px solid var(--blend-border-light);
    border-radius: var(--mdb-border-radius);
    box-shadow: var(--blend-shadow-md);
    padding: 0.4rem;
}
.dropdown-item {
    border-radius: 0.4rem;
    font-size: 0.9rem;
    color: var(--blend-navy);
    padding: 0.5rem 0.9rem;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(20, 58, 99, 0.06);
    color: var(--blend-navy);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    /*font-variant-caps: normal;*/
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    border-radius: 0.55rem;
    padding: 0.7rem 1.5rem;
    box-shadow: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease,
                color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 0.85rem 1.9rem; font-size: 0.9rem; }

/* Navy primary */
.btn-primary,
.btn.bg-primary {
    --mdb-btn-color: var(--blend-white);
    --mdb-btn-bg: var(--blend-navy);
    --mdb-btn-border-color: var(--blend-navy);
    --mdb-btn-hover-color: var(--blend-white);
    --mdb-btn-hover-bg: var(--blend-navy-light);
    --mdb-btn-hover-border-color: var(--blend-navy-light);
    --mdb-btn-active-bg: var(--blend-navy-deep);
    --mdb-btn-active-border-color: var(--blend-navy-deep);
    background-color: var(--blend-navy);
    color: var(--blend-white);
    box-shadow: 0 6px 16px rgba(13, 40, 66, 0.16);
}
.btn-primary:hover,
.btn.bg-primary:hover {
    background-color: var(--blend-navy-light);
    box-shadow: 0 8px 22px rgba(13, 40, 66, 0.2);
}

/* Gold secondary (accent CTA) */
.btn-secondary,
.btn.bg-secondary {
    --mdb-btn-color: var(--blend-navy-deep);
    --mdb-btn-bg: var(--blend-gold);
    --mdb-btn-border-color: var(--blend-gold);
    --mdb-btn-hover-color: var(--blend-navy-deep);
    --mdb-btn-hover-bg: var(--blend-gold-light);
    --mdb-btn-hover-border-color: var(--blend-gold-light);
    background-color: var(--blend-gold);
    color: var(--blend-navy-deep) !important;
    box-shadow: 0 6px 16px rgba(184, 144, 72, 0.22);
}
.btn-secondary:hover,
.btn.bg-secondary:hover {
    background-color: var(--blend-gold-light);
    color: var(--blend-navy-deep) !important;
}

/* Success buttons (catering submit) reuse navy so the palette stays tight */
.btn-success {
    --mdb-btn-color: var(--blend-white);
    --mdb-btn-bg: var(--blend-navy);
    --mdb-btn-border-color: var(--blend-navy);
    --mdb-btn-hover-bg: var(--blend-navy-light);
    --mdb-btn-hover-border-color: var(--blend-navy-light);
    background-color: var(--blend-navy);
    color: var(--blend-white);
    box-shadow: 0 6px 16px rgba(13, 40, 66, 0.16);
}
.btn-success:hover { background-color: var(--blend-navy-light); }

/* Outline */
.btn-outline-primary,
.btn-outline-brand {
    --mdb-btn-color: var(--blend-navy);
    --mdb-btn-border-color: rgba(20, 58, 99, 0.5);
    --mdb-btn-hover-color: var(--blend-white);
    --mdb-btn-hover-bg: var(--blend-navy);
    --mdb-btn-hover-border-color: var(--blend-navy);
    color: var(--blend-navy);
    border: 1px solid rgba(20, 58, 99, 0.5);
    background: transparent;
}
.btn-outline-primary:hover,
.btn-outline-brand:hover {
    background: var(--blend-navy);
    color: var(--blend-white);
}

/* Nav action buttons: keep them tidy and equal height */
.button-container .btn { min-height: 44px; }
.button-container .btn:hover,
.button-container .btn:focus,
.button-container .btn:active {
    background-color: var(--blend-gold-light) !important;
    color: var(--blend-navy-deep) !important;
}

/* --------------------------------------------------------------------------
   Colour utility overrides (used across templates)
   -------------------------------------------------------------------------- */
.text-primary { color: var(--blend-navy) !important; }
.text-secondary { color: var(--blend-gold-dark) !important; }
.bg-primary { background-color: var(--blend-navy) !important; }
.bg-secondary { background-color: var(--blend-gold) !important; }

.text-success { color: #2f7a52 !important; }
.text-danger { color: #a23b3b !important; }

/* On navy/gold panels, secondary text should read as gold-on-navy */
.bg-dark .text-secondary,
.bg-primary .text-secondary { color: var(--blend-gold-light) !important; }

/* --------------------------------------------------------------------------
   Header / hero
   -------------------------------------------------------------------------- */
.head-section {
    position: relative;
    overflow: hidden;
    align-content: center;
}
.head-section > .container-fluid,
.head-section > .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Background media (home video / fallback image) */
#myVideo,
#myPicture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Navy legibility overlay for any hero with media/background image */
.head-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(9, 26, 44, 0.82) 0%,
            rgba(9, 26, 44, 0.55) 45%,
            rgba(9, 26, 44, 0.25) 100%),
        linear-gradient(0deg,
            rgba(9, 26, 44, 0.7) 0%,
            rgba(9, 26, 44, 0) 55%);
    pointer-events: none;
}

/* Home hero: give it real height and bottom-left content */
body #headerHome .head-section,
.head-section.hero-home { min-height: 88vh; }

.head-section h1,
.head-section h2,
.head-section h3 { color: var(--blend-white); }

.blend-hero-content { max-width: 760px; }

/* Eyebrow reads lighter over the dark hero overlay */
.head-section .blend-eyebrow { color: var(--blend-gold-light); }
.head-section .blend-eyebrow::before { background: var(--blend-gold-light); }

#header-title {
    z-index: 2;
    max-width: min(90%, 40ch);
    color: var(--blend-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
#header-title.display-1 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
    background-color: var(--blend-white-pure);
    border: 1px solid var(--blend-border-light);
    border-radius: var(--mdb-border-radius-lg);
    box-shadow: var(--blend-shadow-sm);
    transition: box-shadow 220ms ease, transform 220ms ease,
                border-color 220ms ease;
}
.card:hover { box-shadow: var(--blend-shadow-md); }

.card-title {
    font-family: "Roboto", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--blend-navy);
    margin-bottom: 0.4rem;
}
.card-text { font-size: 0.95rem; }
.card-text.text-primary { font-weight: 600; }

/* Menu item cards: quiet lift with a gold left accent on hover */
#menu-content .card {
    border-left: 3px solid transparent;
}
#menu-content .card:hover {
    border-left-color: var(--blend-gold);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Home: hours list + info cards
   -------------------------------------------------------------------------- */
.list-group { border-radius: var(--mdb-border-radius); overflow: hidden; }
.list-group-item {
    border: 0;
    border-bottom: 1px solid var(--blend-border-light);
    background-color: transparent;
    padding: 0.75rem 1rem;
    color: var(--blend-text-dark);
}
.list-group-item:last-child { border-bottom: 0; }
.list-group-item.d-flex.justify-content-between .fw-bold { color: var(--blend-navy); }
.list-group-item.d-flex.justify-content-between.align-items-center span { min-width: 100px; }

#resthours { padding: 0.5rem 0 1rem; letter-spacing: 0.06em; }

/* --------------------------------------------------------------------------
   Specials carousel
   -------------------------------------------------------------------------- */
#specialsCarousel {
    border-radius: var(--mdb-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--blend-shadow-md);
}
#specialsCarousel .carousel-item.bg-dark {
    background-color: var(--blend-navy-deep) !important;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(184, 144, 72, 0.14), transparent 45%);
}
#specialsCarousel .carousel-item h5 { color: var(--blend-gold-light) !important; }
#specialsCarousel .carousel-item .text-white { color: var(--blend-white-muted) !important; }
#specialsCarousel .carousel-item .text-success { color: var(--blend-gold-light) !important; }
.carousel-indicators [data-mdb-target] { background-color: var(--blend-gold); }

#specials-section h2 { margin-bottom: 1.75rem; }

/* --------------------------------------------------------------------------
   Home info sections — navy feature ↔ soft-white content rhythm
   -------------------------------------------------------------------------- */
.info-row { margin: 0; }
.info-row + .info-row { border-top: 1px solid var(--blend-border-light); }

.info-row .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 2.5rem 1.5rem;
}

/* Feature (image/colour) half — always navy for a cohesive rhythm */
.info-col.bg-dark,
.info-col.bg-secondary {
    background-color: var(--blend-navy) !important;
    position: relative;
}
.info-col.bg-secondary { background-color: var(--blend-navy-light) !important; }

.info-header {
    padding: 1rem;
    text-align: center;
}
.info-header a,
.info-col.bg-dark .info-header a,
.info-col.bg-secondary .info-header a {
    color: var(--blend-gold-light) !important;
    transition: color 180ms ease;
}
.info-header a:hover { color: var(--blend-gold) !important; }

/* Content half */
.info-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--blend-text-muted);
    text-align: center;
    padding: 1.25rem 1.5rem 0.75rem;
    max-width: 46ch;
    margin-inline: auto;
}
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: center;
    color: var(--blend-navy);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    text-decoration: none;
}
.info-link::after {
    content: "\2192";
    transition: transform 180ms ease;
}
.info-link:hover { color: var(--blend-gold-dark); }
.info-link:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Menu — tabs & accordion
   -------------------------------------------------------------------------- */
.nav-tabs {
    border-bottom: 1px solid var(--blend-border-light);
    background-color: var(--blend-white-pure) !important;
}
.nav-tabs .nav-link {
    color: var(--blend-text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.25rem;
    background: transparent;
}
.nav-tabs .nav-link:hover { color: var(--blend-navy); }
.nav-tabs .nav-link.active {
    color: var(--blend-navy);
    background: transparent;
    border-bottom-color: var(--blend-gold);
}

#menu-content { background-color: transparent; }

.accordion {
    --mdb-accordion-border-color: var(--blend-border-light);
    border-radius: var(--mdb-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--blend-shadow-sm);
}
.accordion-item { border-color: var(--blend-border-light); background-color: var(--blend-white-pure); }
.accordion-button {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--blend-navy);
    background-color: var(--blend-white-pure);
    padding: 1.1rem 1.25rem;
}
.accordion-button:not(.collapsed) {
    color: var(--blend-navy);
    background-color: rgba(20, 58, 99, 0.05);
    box-shadow: inset 0 -1px 0 var(--blend-border-light);
}
.accordion-button:focus {
    border-color: var(--blend-border-gold);
    box-shadow: 0 0 0 0.2rem rgba(184, 144, 72, 0.2);
}
.accordion-item:first-of-type,
.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

/* --------------------------------------------------------------------------
   Forms & modals
   -------------------------------------------------------------------------- */
.form-label {
    color: var(--blend-navy);
    font-weight: 600;
    font-size: 0.9rem;
}
.form-control,
.form-select {
    border-radius: var(--mdb-border-radius-sm);
    border-color: var(--blend-border-light);
    color: var(--blend-text-dark);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--blend-gold);
    box-shadow: 0 0 0 0.18rem rgba(184, 144, 72, 0.18);
}
.form-check-input:checked {
    background-color: var(--blend-navy);
    border-color: var(--blend-navy);
}
.form-check-input:focus {
    border-color: var(--blend-gold);
    box-shadow: 0 0 0 0.18rem rgba(184, 144, 72, 0.18);
}

.modal-content {
    border: 1px solid var(--blend-border-light);
    border-radius: var(--mdb-border-radius-lg);
    box-shadow: 0 24px 60px rgba(13, 40, 66, 0.28);
}
.modal-header {
    border-bottom: 1px solid var(--blend-border-light);
    padding: 1.25rem 1.5rem;
}
.modal-title { color: var(--blend-navy); }
.modal-footer { border-top: 1px solid var(--blend-border-light); }

/* ---- Venue Inquiry Modal ---- */
.venue-modal {
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Polished header */
.venue-modal .modal-header {
    background: linear-gradient(135deg, rgba(20,58,99,0.06), rgba(184,144,72,0.05));
    border-bottom: 1px solid var(--blend-border-light);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.venue-modal .modal-title {
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--blend-navy);
}
.venue-modal .modal-subtitle {
    color: var(--blend-text-muted);
}
.venue-modal .modal-subtitle i {
    color: var(--blend-gold);
}

.venue-modal .modal-body {
    display: flex;
    flex: 1 1 auto;
    overflow: hidden;
    padding: 0; /* inner columns handle their own padding */
}

.venue-modal .row.g-0 {
    display: flex;
    flex: 1 1 auto;
    min-height: 0; /* allow children to size/scroll properly */
    overflow: hidden;
}

/* Left tabs column */
.venue-modal .col-md-3 {
    flex: 0 0 280px;
    width: 280px;
    max-width: 320px;
    min-width: 260px;
    overflow-y: auto;
    background: var(--blend-white-pure);
}

/* Right content area uses a 75/25 split without overlap */
.venue-modal .col-md-9 {
    flex: 1 1 auto;
    width: auto;
    display: grid !important;
    grid-template-rows: 3fr 1fr; /* 75% / 25% */
    min-height: 0;
    overflow: hidden;
    background: var(--blend-white-pure);
}

.venue-modal .venue-modal-top {
    min-height: 0;
    overflow: auto;
    padding: 1rem 1rem 0.75rem;
}

.venue-modal .venue-modal-bottom {
    border-top: 1px solid var(--blend-border-light);
    background: linear-gradient(180deg, rgba(20,58,99,0.04), rgba(20,58,99,0.02));
    padding: 0.75rem 1rem 1rem;
}

/* Larger, more tactile tabs */
.venue-tabs { display: flex; flex-direction: column; gap: 0.5rem; }
.venue-tabs .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blend-text-muted);
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    border-radius: var(--mdb-border-radius);
    padding: 0.85rem 0.9rem 0.85rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 160ms ease, box-shadow 160ms ease,
                transform 160ms ease, border-color 160ms ease, color 160ms ease;
}
.venue-tabs .nav-link i { width: 1.25rem; text-align: center; font-size: 1.05rem; }
.venue-tabs .nav-link:hover {
    color: var(--blend-navy);
    background: rgba(20,58,99,0.06);
    border-color: var(--blend-border-light);
    transform: translateX(2px);
    box-shadow: var(--blend-shadow-sm);
}
.venue-tabs .nav-link.active {
    color: var(--blend-navy);
    background: rgba(184, 144, 72, 0.16);
    border-color: var(--blend-gold);
    box-shadow: 0 6px 18px rgba(184, 144, 72, 0.16);
}
.venue-tabs .nav-link.active::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--blend-gold);
    border-radius: 4px;
}
.venue-tabs .nav-link:active { transform: translateX(1px); }

/* Form polish */
.venue-form .form-label { font-weight: 700; letter-spacing: 0.02em; }
.venue-form .btn { min-width: 180px; }

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .venue-modal { height: 100dvh; }
    .venue-modal .col-md-9 { grid-template-rows: 3fr 1fr; }
}

/* helpers */
.object-fit-cover { object-fit: cover; }

/* --------------------------------------------------------------------------
   Footer (navy)
   -------------------------------------------------------------------------- */
footer.bg-dark {
    background-color: var(--blend-navy-deep) !important;
    color: var(--blend-white-muted);
    position: relative;
    width: 100%;
}
footer .border-bottom { border-color: var(--blend-navy-softline) !important; }
footer h6 {
    color: var(--blend-white);
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}
footer h6 .fa-gem,
footer .fas { color: var(--blend-gold-light); }
footer a.text-reset,
footer p,
footer span { color: var(--blend-white-muted) !important; }
footer a.text-reset { transition: color 160ms ease; }
footer a.text-reset:hover { color: var(--blend-gold-light) !important; }
footer .fab {
    color: var(--blend-white-muted);
    transition: color 160ms ease, transform 160ms ease;
}
footer .fab:hover { color: var(--blend-gold-light); transform: translateY(-2px); }
footer section.border-bottom { padding-block: 1.25rem; }

/* --------------------------------------------------------------------------
   Story / about page
   -------------------------------------------------------------------------- */
.chef-image {
    border-radius: var(--mdb-border-radius-lg);
    box-shadow: var(--blend-shadow-md);
}
.about-section { color: var(--blend-text-muted); }
.about-section h2 { color: var(--blend-navy); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .navbar .nav-link { padding-block: 0.55rem; }
    .navbar .nav-link::after { display: none; }
    .button-container { margin-top: 0.75rem; }
}

@media (max-width: 767.98px) {
    .info-row .col-md-6 { min-height: 240px; padding: 2rem 1.25rem; }
    .head-section::after {
        background:
            linear-gradient(0deg,
                rgba(9, 26, 44, 0.85) 0%,
                rgba(9, 26, 44, 0.35) 100%);
    }
    #header-title { max-width: 100%; }
}

@media (max-width: 475px) {
    .btn-mobile-nav { height: 48px; }
}
