/*
Theme Name: Kartrite
Version: 1.0.0
Author: O'Rourke Hospitality
Text Domain: kartrite
*/

:root {
    --Black: #000000;
    --White: #FFFFFF;
    --Off-black: #222222;
    --Image-Dark: #666666;
    --Image-Gray: #CCCCCC;
    --Background-Light-Grey: #F5F5F5;
    --Aqua: #4EC1E0;
    --Slate: #696057;
    --Stone: #AEA299;
    --Purple: #273671;
    --Gold: #FBAE35;
    --Pink: #FA0E7C;
    --Green: #186730;
}

@font-face {
    font-family: 'BodoniFLF';
    src: url('fonts/BodoniflfRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BodoniFLF';
    src: url('fonts/BodoniflfBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BodoniFLF';
    src: url('fonts/BodoniflfItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'BodoniFLF';
    src: url('fonts/BodoniflfBolditalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ==========================================================================
   Site Header — hamburger bar + mega menu (Figma node 7411-2861 / 7078-1190)
   ========================================================================== */

:root {
    --page-padding: 64px;
}

.site-header {
    position: relative;
    z-index: 1000;
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px var(--page-padding);
    background: var(--White, #fff);
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-header .logo {
    display: flex;
    align-items: center;
}

.site-header .logo img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Toggle (hamburger) and close (X) share the exact same 48x48 hit box and 24x24
   icon slot so the icon doesn't visually jump position/size when it swaps —
   matches Figma's own "Icon" wrapper spec (p-[12px] around a size-[24px] icon). */
.site-header__toggle,
.site-header__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 0;
}

.site-header__icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.site-header__toggle-icon {
    width: 16px;
    height: 12px;
    display: block;
}

.site-header__close img {
    width: 24px;
    height: 24px;
    display: block;
}

.site-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 100vh;
    overflow-y: auto;
    background: var(--White, #fff);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
}

.site-header__menu.is-open {
    opacity: 1;
    visibility: visible;
}

body.site-header-open {
    overflow: hidden;
}

.site-header__content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    padding: 0 var(--page-padding) 60px;
}

.site-header__col--links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 2 1 640px;
}

.site-header__col--info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 320px;
}

/* Two independent columns (real sibling <ul>s built by kartrite_nav_columns()),
   NOT one 2-column grid: grid rows are shared between the columns, so expanding a
   sub-menu grew the row and left dead space beside the expanded item. */
.site-header__links-list {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
}

.site-header__links-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header__links-list li {
    margin: 0;
}

.site-header__links-list a {
    display: block;
    font-family: "proxima-nova", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--Slate, #696057);
    text-decoration: none;
}

.site-header__links-list a:hover {
    color: var(--Aqua, #4ec1e0);
}

/* Submenu expand/collapse — for top-level nav items with child pages (e.g.
   Accommodations) that aren't in the Figma mega-menu reference; no design
   supplied, so this reuses the site's existing type/color tokens. The menu
   markup only nests a `.sub-menu` when the WP menu item actually has children
   added in Appearance > Menus — adding a page as a *Page* child isn't enough,
   it also needs to be dragged under its parent in the menu itself. */
.site-header__links-list li.menu-item-has-children {
    position: relative;
}

.site-header__links-list li.menu-item-has-children > a {
    padding-right: 32px;
}

.site-header__nav-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--Slate, #696057);
}

.site-header__nav-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.site-header__links-list li.is-expanded > .site-header__nav-toggle svg {
    transform: rotate(180deg);
}

.site-header__links-list .sub-menu {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.site-header__links-list .sub-menu a {
    display: block;
    font-family: "proxima-nova", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--Slate, #696057);
    opacity: 0.75;
    text-decoration: none;
}

.site-header__links-list .sub-menu a:hover {
    color: var(--Aqua, #4ec1e0);
    opacity: 1;
}

/* Compact "email + arrow" subscribe row (left column, under the nav links) */
.nav-subscribe {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    max-width: 400px;
}

.nav-subscribe__title {
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: var(--Purple, #273671);
    margin: 0 0 10px;
}

.nav-subscribe__agreement {
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 9px;
    color: var(--Black, #000);
    margin: 0;
}

.nav-subscribe .gform_wrapper {
    --gf-color-primary: var(--Black, #000);
    --gf-color-primary-contrast: var(--White, #fff);
    --gf-color-in-ctrl-primary: var(--Black, #000);
    margin: 0;
}

.nav-subscribe .gform_wrapper form {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-subscribe .gform_wrapper .gform_fields,
.nav-subscribe .gform_wrapper .gform_body {
    flex: 1 1 auto;
    min-width: 0;
}

.nav-subscribe .gform_wrapper .gfield {
    margin: 0;
}

.nav-subscribe .gform_wrapper .gfield_label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-subscribe .gform_wrapper .ginput_container input[type="email"] {
    width: 100%;
    border: 1px solid var(--Black, #000);
    padding: 8px 12px;
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 9px;
    color: rgba(0, 0, 0, 0.6);
    background: var(--White, #fff);
    border-radius: 0;
}

.nav-subscribe .gform_wrapper .gform_footer,
.nav-subscribe .gform_wrapper .gform-footer {
    flex: none;
    margin: 0;
    padding: 0;
}

.nav-subscribe .gform_wrapper input[type="submit"],
.nav-subscribe .gform_wrapper button[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
    display: inline-flex  !important;
    align-items: center !important;
    gap: 10px !important;
    width: auto !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    color: var(--Black, #000) !important;
    font-family: "museo-slab", serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    background-image: url('images/icons/subscribe-arrow.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    padding-right: 20px !important;
    box-shadow: none !important;
}

.nav-subscribe .gform_wrapper input[type="submit"]:hover,
.nav-subscribe .gform_wrapper button[type="submit"]:hover {
    opacity: 0.7;
}

.nav-subscribe .gform_confirmation_message {
    font-family: "museo-slab", serif;
    font-size: 12px;
    color: var(--Green, #186730);
}

/* Gravity Forms — global branding override for any form embedded in page content
   (Request for Proposal, Contact Us, Request a Donation, etc.). Same bordered-input
   / aqua-pill convention private_dining_rfp.php established, applied site-wide
   instead of per block.

   SCOPING: matches every .gform_wrapper EXCEPT ones inside .nav-subscribe (the
   header's Subscribe box, which has a deliberately different text+arrow treatment)
   or .site-footer. It is NOT scoped to a form ID — form IDs differ between local
   and live, so these must key off structure only. It is also NOT scoped to #main:
   page.php only emits #main for a page's own post content, and all three of these
   forms are embedded inside a content_block flexible-content section instead, which
   renders OUTSIDE #main — that's why an earlier #main-scoped pass matched nothing.

   The `:not(...)` exclusion means these rules genuinely never match the header
   form, so there's no specificity race with the .nav-subscribe block above
   regardless of source order. private_dining_rfp.php's own scoped override is 2
   classes deep and still wins on /dining/, so that block is unaffected too.

   The scope is written `:not(:is(.nav-subscribe, .site-footer) *)` rather than two
   chained :not()s purely for length — it's the same match, just readable.

   Targets input[type="submit"] directly (GF's real submit element) rather than a
   class name, so it isn't affected by the gform_button/gform-button underscore-vs-
   hyphen mismatch documented elsewhere in this file. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) {
    --gf-form-gap-x: 20px;
    --gf-form-gap-y: 12px;
    /* GF sizes the choice grid's control column from this — keep it equal to the
       real checkbox/radio size set further down, or the box and its label drift. */
    --gf-ctrl-choice-size: 20px;
    margin: 0;
    /* These forms are embedded inside a content_block, whose .content-block__inner
       sets text-align:center for its own centered copy. text-align INHERITS, so
       without this reset every label, legend, sub-label, choice label, validation
       message — and the text the visitor types into the inputs, since form controls
       inherit it too — came out centered. A form is left-aligned regardless of the
       block it's dropped into, so reset once here at the wrapper rather than
       repeating text-align on each descendant rule. */
    text-align: left;
}

/* Field labels. GF renders choice fields (radio/checkbox) as a <fieldset> whose
   label is a <legend>, and a legend is shrink-to-fit by default — GF's own theme
   makes it display:flex, which left it 144px wide instead of spanning the field,
   so a long "Will You Require Meals for This Event?" legend wrapped early and read
   as misaligned against the plain <label>s above it. width:100% puts every field's
   label on the same left edge and the same measure, whatever element type it is.
   The :not(.screen-reader-text) guard matters — GF emits an EMPTY sr-only legend on
   checkbox fields that have no visible label (the Privacy Policy consent box), and
   forcing width on that would undo its off-screen positioning. */
/* .newsletter-signup__form is exempted too: that block visually hides its labels
   with its own sr-only rule (position:absolute; width:1px), but this rule's
   width:100% out-specifies the width there. On an absolutely positioned box that
   resolved against a 375px containing block instead of the 327px field, so the
   "Email(Required)" label stuck 23px past the viewport and gave the homepage a
   horizontal scrollbar on mobile — clip/overflow hide the paint, not the layout box. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer, .newsletter-signup__form) *) .gfield_label:not(.screen-reader-text):not(.gform-field-label--type-inline):not(.gform-field-label--type-sub),
.gform_wrapper:not(:is(.nav-subscribe, .site-footer, .newsletter-signup__form) *) .gform-field-label:not(.screen-reader-text):not(.gform-field-label--type-inline):not(.gform-field-label--type-sub) {
    display: block;
    width: 100%;
    float: none;
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--Purple, #273671);
    padding: 0;
    margin-bottom: 8px;
}

/* fieldset carries UA border/padding/margin and a min-width that stops flex/grid
   children from shrinking — reset so a choice field boxes identically to a plain
   field and its columns can actually narrow at small widths. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) fieldset.gfield {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

/* Choice labels (radio/checkbox option text) are body copy, not the purple
   uppercase H7 step the field's own label uses. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gform-field-label--type-inline {
    font-family: "museo-slab", serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0;
    color: var(--Off-black, #222);
    width: auto;
    margin: 0;
    cursor: pointer;
}

/* Sub-labels — the "First"/"Last" under a Name field, or "Street Address"/"City"
   under an Address field. GF gives these the same .gform-field-label class as the
   field's own label, so without this they'd inherit the full purple uppercase H7
   treatment above and compete with the real label instead of sitting under it. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gform-field-label--type-sub {
    font-family: "museo-slab", serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0.04em;
    color: var(--Slate, #696057);
    margin: 5px 0 0;
}

/* One choice row. GF's own rule is
     .gform-theme--framework .gfield--type-choice .gchoice { grid-template-columns:
       minmax(var(--gf-ctrl-choice-size), max-content) auto; gap: <row> 0 }
   — note the column gap is a hardcoded 0, which is why the option text sat flush
   against the control. That selector is 3 classes and GF's stylesheet loads after
   this one, so a 3-class rule here would lose the tie; adding .gfield--type-choice
   makes it 4 and wins. The control column is sized by setting GF's own
   --gf-ctrl-choice-size (below) instead of overriding the grid template, so their
   minmax() keeps working and stays in sync with the real control size.
   align-items:start (not center) keeps the box against the FIRST line when a long
   consent label wraps to two lines. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield--type-choice .gchoice {
    column-gap: 12px;
    align-items: start;
}

/* Branded checkbox / radio. accent-color alone only recolors the browser's own
   control and can't touch its size, border, or radius, so these are drawn from
   scratch: appearance:none clears the native widget, then the checked state is
   painted with an inline SVG tick (checkbox) and a radial-gradient dot (radio) —
   neither needs a new asset file. ::before isn't usable here; an <input> is a
   replaced element and doesn't reliably render pseudo-elements. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="checkbox"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    flex: none;
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    padding: 0;
    border: 1px solid var(--Off-black, #222);
    border-radius: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="radio"] {
    border-radius: 50%;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="checkbox"]:hover,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="radio"]:hover {
    border-color: var(--Aqua, #4ec1e0);
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="checkbox"]:checked,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="radio"]:checked {
    background-color: var(--Aqua, #4ec1e0);
    border-color: var(--Aqua, #4ec1e0);
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.5 3.5L13 5'/%3E%3C/svg%3E");
    background-size: 13px 13px;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="radio"]:checked {
    background-image: radial-gradient(circle at center, #fff 0 3.5px, transparent 4px);
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="checkbox"]:focus-visible,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="radio"]:focus-visible {
    outline: 2px solid var(--Purple, #273671);
    outline-offset: 2px;
}

/* Links inside form copy — the consent checkbox's Privacy Policy link renders as a
   real anchor, and with no rule it inherited the surrounding body color and read as
   plain text. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gform-field-label a,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_description a {
    color: var(--Purple, #273671);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gform-field-label a:hover,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_description a:hover {
    color: var(--Aqua, #4ec1e0);
}

/* Validation — GF's default is a red that isn't in this site's palette. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_error input,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_error select,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_error textarea {
    border-color: var(--Pink, #fa0e7c);
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_validation_message,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .validation_message {
    font-family: "museo-slab", serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--Pink, #fa0e7c);
    background: none;
    border: 0;
    padding: 4px 0 0;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gfield_required {
    display: none;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="text"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="email"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="tel"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="number"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="url"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) select,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) textarea {
    width: 100%;
    height: 43px;
    border: 1px solid var(--Off-black, #222);
    border-radius: 0;
    padding: 0 15px;
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--Off-black, #222);
    background: #fff;
    box-shadow: none;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) textarea {
    height: 100px;
    padding: 15px;
    resize: vertical;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('images/icons/private-dining-rfp-chevron.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px 20px;
    padding-right: 40px;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gform_footer,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .gform-footer {
    margin: 20px 0 0;
    padding: 0;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="submit"],
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) button[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 10px 30px !important;
    border-radius: 100px !important;
    border: none !important;
    cursor: pointer;
    background: var(--Aqua, #4ec1e0) !important;
    color: #000 !important;
    font-family: "museo-slab", serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-transform: uppercase !important;
}

.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) input[type="submit"]:hover,
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) button[type="submit"]:hover {
    opacity: 0.9;
}

/* Request a Donation's Address field is configured street/city/state/country with
   no zip, so its 4 sub-fields don't divide evenly into the 2-per-row grid — Country
   is left alone as a half-width box on its own row with a big empty gap beside it.
   Give it the full row instead of a dangling half box. Scoped to that exact
   sub-field combination so a differently-configured Address field isn't affected. */
.gform_wrapper:not(:is(.nav-subscribe, .site-footer) *) .ginput_container_address.has_city.has_state.has_country:not(.has_zip) .address_country {
    width: 100%;
}

/* Compact check-in/check-out booking card (right column) */
.nav-booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 275px;
    padding-top: 20px;
    background: var(--White, #fff);
    border: 1px solid var(--Off-black, #222);
}

.nav-booking-card__dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    height: 48px;
    width: 100%;
}

.nav-booking-card__date {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.nav-booking-card__month {
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--Off-black, #222);
    white-space: nowrap;
}

.nav-booking-card__day-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-booking-card__day {
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 33px;
    text-transform: uppercase;
    color: var(--Off-black, #222);
}

.nav-booking-card__chevron {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

/* Invisible but still real-positioned/sized (covers the visible date block) so jQuery UI
   datepicker can attach and anchor its popup where the user clicked — display:none or
   [hidden] makes datepicker treat the input as not-visible and refuse to show at all. */
.nav-booking-card__hidden-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 0;
    padding: 0;
    pointer-events: none;
}

.nav-booking-card__divider {
    width: 2px;
    height: 100%;
    background: var(--Purple, #273671);
}

.nav-booking-card__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: var(--Aqua, #4ec1e0);
    color: var(--Black, #000);
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-booking-card__submit:hover {
    opacity: 0.9;
}

/* Contact / socials column */
.site-header__contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.site-header__contact-title {
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 23px;
    text-transform: uppercase;
    color: var(--Purple, #273671);
    margin: 0;
}

.site-header__contact-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-header__contact-links a {
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--Black, #000);
    text-decoration: underline;
}

.site-header__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__socials img {
    width: 24px;
    height: 24px;
    display: block;
}

@media (max-width: 991px) {
    :root {
        --page-padding: 24px;
    }

    .site-header .logo img {
        height: 48px;
        max-width: 140px;
    }

    .site-header__content {
        flex-direction: column;
        gap: 56px;
    }

    /* Columns stack. The split is sequential, so stacking them keeps the menu's
       original top-to-bottom order; the matching row-gap makes the seam between
       the two lists indistinguishable from the gap between items. */
    .site-header__links-list {
        flex-direction: column;
        row-gap: 24px;
    }

    /* Stacked columns are full-bleed flex items; narrowing to 90% keeps the
       links from running to the panel edge on small screens. */
    .site-header__links-col {
        row-gap: 24px;
        width: 90%;
    }

    .site-header__links-list a {
        font-size: 22px;
    }

    .nav-subscribe,
    .nav-booking-card {
        max-width: none;
    }
}

/* ==========================================================================
   Site Footer (Figma node 7411-2808)
   ========================================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 0 var(--page-padding);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/footer-bg.jpg') center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.site-footer__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0;
}

.site-footer__content {
    display: flex;
    gap: 64px;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1 1 0;
    min-width: 0;
}

.site-footer__col--links {
    max-width: 400px;
}

.site-footer__logo img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.site-footer__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-footer__block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__label {
    margin: 0;
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: var(--Black, #000);
}

.site-footer__text {
    margin: 0;
    display: block;
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--Black, #000);
}

.site-footer__link {
    text-decoration: underline;
}

.site-footer__contact-lines {
    display: flex;
    flex-direction: column;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__social img {
    width: 24px;
    height: 24px;
    display: block;
}

.site-footer__nav-list {
    column-count: 2;
    column-gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav-list li {
    padding: 8px 0;
    break-inside: avoid;
}

.site-footer__nav-list a {
    display: block;
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: var(--Black, #000);
    text-decoration: none;
}

.site-footer__nav-list a:hover {
    color: var(--Aqua, #4ec1e0);
}

.site-footer__credits {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.site-footer__divider {
    height: 1px;
    width: 100%;
    background: var(--Black, #000);
}

.site-footer__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__copyright {
    margin: 0;
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--Black, #000);
}

.site-footer__bottom-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__bottom-list a {
    font-family: "museo-slab", serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--Black, #000);
    text-decoration: none;
}

.site-footer__bottom-list a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .site-footer__container {
        padding: 56px 0;
        gap: 56px;
    }

    .site-footer__content {
        flex-direction: column;
        gap: 40px;
    }

    .site-footer__col--links {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .site-footer__nav-list {
        column-count: 1;
    }

    .site-footer__row {
        flex-direction: column;
    }
}

.button-1,
.button-2,
.button-3,
.button-4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: var(--Aqua, #4ec1e0);
    border-radius: 100px;
    font-family: "museo-slab", serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: var(--Black, #000) !important;
    text-decoration: none;
    white-space: nowrap;
}
