/* Google Fonts - Lato for body, Cormorant Garamond for headings (similar to Avenir Light) */
/* Google Fonts — Lato (body) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #1A2541;
    /* Navy text globally */
    background-color: #ffffff;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(26, 42, 74, 0.1);
}

nav {
    position: relative;
    display: flex;
    justify-content: flex-start;
    /* Aligned start, spacing handled by margins */
    align-items: center;
    padding: 0.8rem 3%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
    /* Gaps handled individually */
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 3rem;
    /* Distinct separation from logo */
}

.logo-img {
    height: 84px;
    width: auto;
    max-width: 216px;
    object-fit: contain;
}

/* Nav links centered in their area or close to logo but separated */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    white-space: nowrap;
}

.nav-links a {
    color: #1A2541;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Hide mobile menu logo on desktop */
.nav-logo-mobile {
    display: none;
}

/* Header Action Buttons */
/* Push this group to the right */
.header-actions {
    display: flex;
    gap: 1rem;
    margin-left: auto;
    /* This does the magic: pushes actions, social, lang to the right */
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
    border: 1px solid #1A2541;
    color: #1A2541;
}

.header-btn svg {
    flex-shrink: 0;
}

/* Hover: fill navy */
.header-btn:hover {
    background: #1A2541;
    border-color: #1A2541;
    color: #ffffff;
}




.nav-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(26, 42, 74, 0.1);
    /* Subtle divider */
}

.nav-social a {
    color: #1A2541;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: #d4af37;
}



/* Hero Section - Split Layout */
/* Hero Section - Stacked Layout */
.hero {
    height: calc(100vh - 80px);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    position: relative;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    background: transparent;
    text-align: center;
    z-index: 10;
    text-align: center;
    z-index: 10;
    /* Above slider images */
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 2.5rem;
    color: #fff;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-color: #0d1b2a;
    display: flex !important;
}

.hero-image-slider img {
    position: relative !important;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1 !important;
    z-index: 1 !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform-origin: center center;
}

/* Mobile break - hidden on desktop */
.mobile-break {
    display: none;
}

/* Ghost Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Dark Buttons (for light backgrounds) */
.btn-dark {
    border-color: #1A2541;
    color: #1A2541;
}

.btn-dark:hover {
    background: #1A2541;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.section-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    }

.hero-content .btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

/* Section Styling */
section {
    padding: 6rem 5%;
}

section h2 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 3rem;
    letter-spacing: normal;
    line-height: 1.3;
    color: #1A2541 !important;
    border-bottom: none !important;
}

/* About Section */
.about {
    text-align: center;
    background: #ffffff;
    padding: 5rem 2rem;
}

.about .section-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #D4A24B;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1A2541;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #5C6B7C;
}

.about p:last-child {
    margin-bottom: 0;
}

.about-catering {
    font-style: italic;
    border-left: 3px solid #d4af37;
    padding-left: 1.5rem;
    margin-top: 2rem !important;
}

.catering-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #d4af37;
    text-align: center;
    margin: 3rem 0 1.5rem 0;
    font-style: italic;
}

/* Menu Section */
.menu {
    background: #ffffff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}


.menu-item {
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.menu-item h3 {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight:  400;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
    color: #d4af37;
    line-height: 25.2px;
}

.menu-category-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    display: block;
    border-radius: 4px;
}

/* Desktop: Show all accordion content */
@media (min-width: 1025px) {
    .menu-accordion-header {
        display: block;
    }

    .menu-accordion-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0 3rem;
    }

    .menu-accordion-content h4,
    .menu-accordion-content p {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
        padding-bottom: 0;
        border-bottom: none !important;
    }
}


.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px dotted rgba(26, 42, 74, 0.2);
    /* Subtle navy border */
    padding-bottom: 0.5rem;
}

.menu-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-desc {
    flex: 1;
    padding-right: 1.5rem;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 1;
    color: #1A2541;
}

.menu-price {
    white-space: nowrap;
    text-align: right;
    font-size: 18px;
    font-weight:  400;
    color: #d4af37;
}

/* Stare p (jeĹ›li zostaĹ‚y jakieĹ› notatki) */
.menu-item p {
    font-size: 16px;
    font-style: italic;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.menu-note {
    font-style: italic;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Reservation Section - Wix Melina Style */
.reservation {
    background: #ffffff;
    padding: 0;
    border-top: none;
    margin-top: 0;
}

.reservation-hero {
    text-align: center;
    padding: 0 5% 5rem 5%;
    background: var(--bg-cream);
}

.reservation-header {
    margin-bottom: 2.5rem;
}

.reservation-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.reservation-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
}

/* Mini Reservation Form */
.reservation-form-mini {
    max-width: 900px;
    margin: 2rem auto 0;
}

.reservation-form-mini .form-row-inline {
    margin-bottom: 1rem;
}

.reservation-form-mini .form-row-inline.form-row-bottom {
    margin-bottom: 0;
}

.reservation-form-mini h2 {
    margin-bottom: 1rem;
}

.form-row-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    align-items: flex-end;
    justify-content: flex-start;
    }

.form-group-mini {
    display: flex;
    flex-direction: column;
    min-width: 90px;
    flex: 1 1 auto;
}

.form-group-mini label {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #1A2541;
    letter-spacing: 0.5px;
}

.form-group-mini input,
.form-group-mini select {
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 42, 74, 0.2);
    color: #1A2541;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    cursor: pointer;
}

.form-group-mini input:focus,
.form-group-mini select:focus {
    outline: none;
    border-bottom-color: #1A2541;
}

.form-group-mini select option {
    background: #ffffff;
    color: #1A2541;
}

.btn-find {
    padding: 0.8rem 2rem;
    white-space: nowrap;
    height: fit-content;
    background: transparent;
    border: 1px solid #1A2541;
    color: #1A2541;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-find:hover {
    background: #1A2541;
    color: #ffffff;
}

.form-row-bottom {
    margin-top: 0.5rem;
}

.form-row-bottom .form-group-mini:first-child {
    flex: 0 0 120px;
}

.form-row-bottom .form-group-mini:nth-child(2) {
    flex: 1 1 200px; max-width: 250px;
}

.form-row-bottom .btn-find {
    flex: 0 0 auto;
    align-self: flex-end;
}

/* Reservation Confirmation Message */
.reservation-confirmation {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    border-radius: 4px;
    text-align: center;
}

.reservation-confirmation.visible {
    display: block;
}


.reservation-confirmation p {
    color: #1A2541;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.reservation-notes-bottom {
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1A2541;
    text-align: left;
}

.reservation-notes-bottom p {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #5a6a7a;
}

.reservation-notes-bottom a {
    color: inherit;
    text-decoration: underline;
}


/* Separator Image */
.reservation-image-separator {
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #d4af37;
    border-radius: 4px;
    overflow: hidden;
}

.reservation-image-separator img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Contact Section Below Image */
.reservation-contact-section {
    display: none;
    /* Hidden on desktop */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 5%;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-contact-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1A2541;
    margin-bottom: 2rem;
}

.contact-item {
    font-size: 15px;
    font-weight: 300;
    color: #1A2541;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-item a {
    color: #1A2541;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

.social-icons-reservation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons-reservation a {
    color: #1A2541;
    transition: opacity 0.3s;
}

.social-icons-reservation a:hover {
    opacity: 0.7;
}

/* Contact Form with Line Inputs */
.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-line input,
.form-group-line textarea {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 42, 74, 0.2);
    color: #1A2541;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}

.form-group-line input::placeholder,
.form-group-line textarea::placeholder {
    color: rgba(26, 42, 74, 0.6);
}

.form-group-line input:focus,
.form-group-line textarea:focus {
    outline: none;
    border-bottom-color: #1A2541;
}

.form-group-line textarea {
    resize: none;
    min-height: 100px;
}

.btn-submit {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #1A2541;
    color: #1A2541;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-submit:hover {
    background: #ffffff;
    color: #1A2541;
}

@media (max-width: 1024px) {
    .form-row-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group-mini {
        min-width: 100%;
    }

    .form-row-bottom .form-group-mini:first-child,
    .form-row-bottom .form-group-mini:nth-child(2) {
        flex: auto;
        max-width: 100%;
    }

    .form-row-bottom .btn-find {
        align-self: stretch;
        margin-top: 0.5rem;
    }

    .reservation-notes-bottom {
        margin-top: 1rem;
    }

    .reservation-image-separator img {
        height: 250px;
    }

    .reservation-contact-section {
        display: grid;
        /* Show on mobile */
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    background: var(--bg-cream);
    border-top: none;
    color: #1A2541;
}

    .contact h2 {
        font-family: 'Cormorant Garamond', serif;
        color: #1A2541;
        margin-bottom: 2rem;
        text-align: center;
        font-weight: 500;
        font-size: 1.3rem;
    }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.6rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-block p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

    .contact-block a {
        color: #1A2541;
        text-decoration: none;
        transition: color 0.3s;
    }
    .contact-block a:hover {
        color: #D4A24B;
    }

.contact-block a:hover {
    opacity: 0.7;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(26, 42, 74, 0.15);
}

.hours-table td:last-child {
    text-align: right;
    color: #d4af37;
}

.contact-map {
    border: 1px solid rgba(212, 175, 55, 0.3);
    height: 400px;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 2rem;
    background: #ffffff;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.7;
}

/* Responsive Design */
/* Responsive Design */
/* Extra wide desktop - slight reduction */
/* 1400px Breakpoint */
@media (max-width: 1400px) {
    nav {
        padding: 1rem 3%;
        /* Reduce padding to gain space */
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 13px;
    }
}

/* Wide desktop - more reduction */
/* 1200px Breakpoint */
@media (max-width: 1200px) {
    nav {
        padding: 1rem 2%;
        /* Further reduce padding */
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 12px;
    }

    .header-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Standard desktop - significant reduction */
/* 1024px Breakpoint */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem;
        /* Minimal padding */
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reservation-contact-section {
        gap: 2rem;
    }

    .nav-links {
        gap: 0.8rem;
        /* Can increase slightly if padding gives enough space */
    }

    .nav-links a {
        font-size: 11px;
        /* Slightly larger readability if possible, or keep 12 */
    }

    .header-btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}

/* Hide mobile-only nav elements on desktop — MUST use !important so it overrides flex defaults */
.nav-mobile-footer,
.nav-mobile-socials,
.nav-mobile-lang {
    display: none !important;
}

/* Desktop: explicitly lock nav-mobile-footer as hidden when screen is wide */
@media (min-width: 1025px) {
    .nav-mobile-footer,
    .nav-mobile-socials,
    .nav-mobile-lang {
        display: none !important;
    }
}

@media (max-width: 1024px) {

    /* Header & Navigation */
    header {
        position: fixed;
        /* Keep header fixed on mobile for transparent overlay */
    }

    nav {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.8rem 5% !important;
        width: 100% !important;
    }

    nav .header-actions,
    nav .nav-social,
    nav .lang-switch-top {
        display: none !important;
    }

    .logo-img {
        max-width: 130px;
    }

    /* Hamburger Menu Icon */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1002;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #1A2541;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hamburger.active {
        position: fixed !important;
        right: 5% !important;
        left: auto !important;
        transform: none !important;
        top: 1.5rem !important;
        z-index: 1002;
    }

    .hamburger.active .bar {
        background-color: #ffffff !important;
    }

    /* Mobile Nav Overlay — white background, navy text */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background-color: #ffffff !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        transition: right 0.4s ease;
        z-index: 1001;
        box-shadow: none;
        padding-top: 100px !important;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0 !important;
        font-family: 'Lato', sans-serif !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #1A2541 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.15em !important;
        transition: color 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #d4af37 !important;
    }

    /* Hide the old bottom logo in the menu */
    .nav-logo-mobile {
        display: none !important;
    }
    
    /* Socials and lang switcher at bottom of mobile menu */
    .nav-mobile-footer {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem !important;
        padding: 2rem 0;
        gap: 1.5rem;
        width: 100%;
        border-top: 1px solid rgba(26, 42, 74, 0.15);
    }
    .nav-mobile-socials {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
    }
    .nav-mobile-socials a {
        color: #1A2541 !important;
        transition: color 0.3s ease;
        display: inline-block !important;
        padding: 0 !important;
    }
    .nav-mobile-socials a svg {
        width: 24px;
        height: 24px;
        display: block;
    }
    .nav-mobile-socials a:hover {
        color: #d4af37 !important;
    }
    .nav-mobile-lang a {
        color: #d4af37 !important;
        font-weight: 700;
        font-size: 1.2rem !important;
        text-decoration: none;
        padding: 0.5rem 1rem !important;
        border: 1px solid #d4af37;
        border-radius: 4px;
        transition: all 0.3s ease;
        display: inline-block !important;
    }
    .nav-mobile-lang a:hover {
        background: #d4af37;
        color: #1A2541 !important;
    }


    /* Overlay Background */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        /* Below menu (1001) but above content */
        display: none;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-social {
        margin-top: 0.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 0 !important;
        margin: 0 !important;
        position: relative;
        min-height: 45vh;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    .hero-image-slider {
        height: 100%;
        width: 100%;
        margin: 0 !important;
        position: absolute;
        top: 0;
        left: 0;
    }

    .hero .hero-content {
        padding: 1.5rem 1rem;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Stack at the bottom */
        align-items: center !important;
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%) !important;
    }

    .hero .hero-content h1 {
        display: none !important;
    }

    .hero .hero-tagline {
        display: none !important;
    }

    .hero .hero-description {
        display: none !important;
    }

    .hero .section-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 320px !important;
        gap: 0.8rem !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
    }

    .hero .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 0.8rem 1.5rem !important;
        margin: 0 !important;
    }

    /* All CTA buttons - compact and equal width */
    .btn,
    .btn-dark,
    .btn-find,
    .btn-submit,
    a.btn,
    a.btn-dark,
    a.btn-submit {
        padding: 0.6rem 1.5rem !important;
        font-size: 12px !important;
        min-width: 140px;
        max-width: 280px;
        width: fit-content;
        display: inline-block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        white-space: normal;
        border-width: 1px !important;
    }

    /* Hide on mobile */
    .hide-mobile {
        display: none !important;
    }

    /* Show line break only on mobile */
    .mobile-break {
        display: inline;
    }

    /* Menu & Grids & Banners */
    .menu-grid,
    .banner-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .banner-item {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        height: 450px;
        display: flex;
        flex-direction: column;
    }

    .banner-item img {
        width: 100%;
        height: 150px;
        aspect-ratio: auto;
        object-fit: cover;
        background: #ffffff;
        display: block;
        margin: 0 auto;
    }




    section {
        padding: 3rem 5%;
    }

    section h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 2rem;
        color: #1A2541 !important;
        border-bottom: none !important;
        text-decoration: none !important;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .menu-category-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
        margin-bottom: 1.5rem;
    }

    .catering-menu-grid .menu-category-image {
        height: auto;
        aspect-ratio: 3/4;
        /* Match portrait format of catering images */
    }

    .menu-item h4 {
        font-size: 0.95rem !important;
        margin: 1rem 0 0.8rem 0 !important;
    }

    .menu-note {
        font-size: 0.8rem !important;
    }


    /* Reservation Forms */
    .form-row-inline,
    .form-row-two {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .form-group-mini {
        width: 100%;
    }

    .reservation-contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 5%;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: stretch;
        /* Reset centering when stacked */
    }

    .contact-map,
    .contact-map iframe {
        height: 300px;
    }
}

/* Promo Banners */
.promo-banners {
    padding: 6rem 5% 2rem 5%;
    /* Adjusted padding */
    background: #ffffff;
}

.banner-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #d4af37;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.banner-item:hover {
    border-color: #ae8b35;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.nav-gold {
    color: #ae8b35 !important;
}

.nav-gold:hover {
    color: #8c6e26 !important;
}

.banner-item a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.banner-item img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.02);
}

.banner-text {
    position: relative;
    width: 100%;
    padding: 1.2rem 1rem;
    background: #ffffff;
    color: #1A2541;
    text-align: center;
}

.banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A2541;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.banner-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: #ae8b35;
    font-weight: 400;
    opacity: 1;
    letter-spacing: 0.5px;
}


/* Gallery Section */
.gallery {
    background: #ffffff;
    padding: 6rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    outline: 2px solid #d4af37;
    outline-offset: -2px;
    z-index: 10;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .gallery-grid img {
        border: none;
        display: block;
        /* Remove vertical gap */
    }
}

/* Subpage Styles */
.subpage-hero {
    padding: 8rem 5% 2rem 5%;
    background: #ffffff;
    text-align: center;
}

.subpage-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 33px;
    font-weight: 400;
    color: #d4af37;
    margin: 0;
    line-height: 41px;
}

.subpage-content {
    padding-top: 2rem;
    text-align: center;
}

/* Override text-align for specific elements that need left alignment */
.subpage-content .catering-images,
.subpage-content .wine-grid,
.subpage-content .gallery-grid {
    text-align: left;
}

.catering-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 5%;
}

.catering-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

@media (max-width: 1024px) {

    /* Subpage Content - Edge to Edge Images */
    .subpage-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .subpage-content>*:not(.gallery-grid):not(.catering-images):not(.wine-grid):not(.wine-header) {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* Ensure wine header also has padding if it's direct child */
    .wine-header {
        padding-left: 5%;
        padding-right: 5%;
    }

    .catering-images {
        grid-template-columns: 1fr;
        padding: 0 !important;
        gap: 0 !important;
        margin: 2rem 0 !important;
        width: 100%;
    }

    .catering-images img {
        border-radius: 0 !important;
        border: none !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto;
        object-fit: cover;
        display: block;
    }

    /* Wine specific override for contain within edge-to-edge container */
    .wine-grid img {
        object-fit: cover !important;
        height: auto !important;
        min-height: 300px !important;
        max-height: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* Subpage Header Updates for Mobile */
    .subpage-hero {
        padding: 2rem 5% 1rem 5%;
    }

    .subpage-content {
        padding-top: 1.5rem;
    }

    .reservation {
        margin-top: 0;
    }

    .reservation-hero {
        padding: 2rem 5% 1rem 5%;
    }
}

.catering-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 0;
    /* Reduced from 2rem to close gap */
}

/* Specific spacing for catering text */
.about.subpage-content p {
    margin-bottom: 2.5rem;
    /* Increased from default 1.5rem for better separation */
}

/* Reduce bottom padding of the catering content section to pull contact closer */
.about.subpage-content {
    padding-bottom: 2rem;
}

.catering-cta .btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 1px solid #1A2541;
    color: #1A2541;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catering-cta .btn:hover {
    background-color: #1A2541;
    color: #ffffff;
    border-color: #1A2541;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 42, 74, 0.2);
}

.nav-links a.active {
    color: #d4af37;
}

@media (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .promo-banners {
        padding: 2rem 5%;
    }
}

/* Wine Page Specifics */
.wine-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.wine-header img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .wine-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .wine-header img {
        height: 50px;
    }
}

/* Wine Grid Specifics */
.wine-grid img {
    object-fit: contain !important;
    height: 400px !important;
    background-color: transparent;
    border: none !important;
    /* Remove border if it looks weird with contain */
}

/* Wine Call To Action Button */
.btn-wine-call {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-wine-call:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Features / Amenities Section */
.features-section {
    background: #ffffff;
    padding: 3rem 2rem 0.5rem 2rem;
}

.features-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.features-container .feature-item {
    flex: 1 1 0;
    min-width: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    stroke: #ae8b35;
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover svg {
    stroke: #d4af37;
    opacity: 1;
    transform: scale(1.1);
}

.feature-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #4a4a4a;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .features-container {
        gap: 0.3rem;
    }
    .feature-item svg {
        width: 20px;
        height: 20px;
    }
    .feature-item span {
        font-size: 8px;
    }
}

@media (max-width: 1024px) {
    .features-section {
        padding: 1.5rem 0.5rem;
    }
    .features-container {
        gap: 0.2rem;
    }
    .feature-item svg {
        width: 16px;
        height: 16px;
    }
    .feature-item span {
        font-size: 7px;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .features-container {
        gap: 0.1rem;
    }
    .feature-item svg {
        width: 14px;
        height: 14px;
    }
    .feature-item span {
        font-size: 6px;
        line-height: 1;
    }
}

.lang-switch-top {
    position: absolute;
    top: 5px;
    right: 5%;
    font-size: 13px;
    font-weight: 700;
    color: #1A2541;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 100;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.lang-switch-top:hover {
    color: #d4af37;
}

@media (max-width: 1024px) {
    .lang-switch-top {
        right: 20px;
        top: 15px;
    }
}

/* Mobile Gallery Limit */

@media (max-width: 1024px) {
    .logo {
        margin-right: 0 !important;
        flex-grow: 1;
        justify-content: center;
    }

    .logo-img {
        max-height: 60px;
    }
}


/* Mobile Banners Fix - Compact Vertical */
@media (max-width: 1024px) {
    .banner-container {
        gap: 1.5rem;
    }

    .banner-item {
        height: auto !important;
        min-height: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .banner-item img {
        height: auto !important;
        width: 100%;
        max-height: 300px;
        object-fit: cover;
    }

    .banner-text {
        padding: 1rem 0.5rem;
        flex-grow: 0;
    }
}

/* Mobile Header Buttons Fix */
@media (max-width: 1024px) {
    .header-actions {
        display: flex;
        flex-direction: column !important;
        width: 100%;
        gap: 12px !important;
        margin: 1rem 0 !important;
        align-items: center;
    }

    .header-btn {
        width: auto;
        max-width: 160px;
        background: #1A2541 !important;
        border: 1px solid #1A2541 !important;
        color: #ffffff !important;
        justify-content: center;
        padding: 0.6rem 1rem !important;
        font-size: 11px;
    }

    /* Force gold hover on mobile too */
    .header-btn:hover,
    .header-btn:active {
        background: #d4af37 !important;
        border-color: #d4af37 !important;
        color: #ffffff !important;
    }
}

/* Mobile Reservation Clean Up */
@media (max-width: 1024px) {
    .reservation-image-separator {
        width: 100% !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .reservation-contact-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
}

/* Mobile Gallery Edge-to-Edge */
@media (max-width: 1024px) {
    .gallery {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .gallery h2 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: center;
    }

    .gallery-grid {
        gap: 0 !important;
        margin: 0 !important;
        grid-template-columns: 1fr !important;
    }

    .gallery-grid img {
        border: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        height: 300px !important;
        min-height: 300px;
        object-fit: contain !important;
        background-color: #ffffff;
    }
}

/* Mobile Hide Contact Title */
@media (max-width: 1024px) {
    .contact h2 {
        display: block !important;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1024px) {

    /* Main Subpage Container - remove padding to allow edge-to-edge */
    .subpage-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Target all image grids to span full width and remove gaps */
    .gallery-grid,
    .catering-images,
    .wine-grid {
        width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 0 !important;
        grid-template-columns: 1fr !important;
    }

    .gallery-grid img,
    .catering-images img,
    .wine-grid img {
        width: 100% !important;
        height: auto !important;
        min-height: 250px;
        object-fit: cover !important;
        border: none !important;
        border-radius: 0 !important;
        display: block !important;
        margin: 0 !important;
    }

    /* Restore padding for all text and UI elements to maintain readability */
    .subpage-content>p,
    .subpage-content>h2,
    .subpage-content>h3,
    .subpage-content>h4,
    .subpage-content>ul,
    .subpage-content>ol,
    .subpage-content>.catering-cta,
    .subpage-content>.catering-description,
    .subpage-content>div:not(.gallery-grid):not(.catering-images):not(.wine-grid):not(.catering-menu-grid):not(.contact-wrapper) {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Mobile Menu Grid Fixes */
    .menu-grid:not(.catering-menu-grid) {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Catering Edge-to-Edge on Mobile */
    .catering-menu-grid {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        grid-template-columns: 1fr !important;
    }

    .menu-item {
        padding: 1.5rem !important;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-grid .menu-category-image,
    .menu-accordion-header img {
        display: none !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item-full-width {
    grid-column: 1 / -1;
}

/* Desktop Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #1A2541;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    width: auto;
    height: auto;
    padding: 10px 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.scroll-to-top:hover {
    background-color: #d4af37;
    color: #1A2541;
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5px;
    display: block;
}

.scroll-to-top span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
    .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #1A2541;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    width: auto;
    height: auto;
    padding: 10px 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}
    .scroll-to-top span {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    .scroll-to-top-mobile {
        display: none !important; /* Hide the old mobile button to prevent duplicate */
    }
}

/* Mobile Scroll to Top Button */
.scroll-to-top-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #1A2541;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 999;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(26, 42, 74, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top-mobile svg {
    width: 20px;
    height: 20px;
}

.scroll-to-top-mobile:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .scroll-to-top-mobile {
        display: flex;
    }
}

/* Custom v2 variables for specific modules */
:root {
    --primary-navy: #1A2541;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b89327;
    --bg-cream: #fbfaf7;
    --bg-sand: #f5f0e6;
    --text-dark: #1f2a3f;
    --text-muted: #5a6b82;
    --border-color: rgba(26, 42, 74, 0.08);
    --border-gold: rgba(212, 175, 55, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Warm Intro Section */
.intro-section {
    padding: 8rem 5%;
    text-align: center;
    background-color: var(--bg-cream);
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-badge {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.intro-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400;
    color: var(--primary-navy) !important;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.intro-signature {
    margin-top: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-navy);
}

/* Modern Split Sections */
section.split-section {
    padding: 0 !important;
    margin: 0 !important;
}

.split-section {
    display: flex;
    width: 100%;
    min-height: 600px;
    align-items: stretch;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section.reverse .split-content {
    background-color: var(--bg-cream);
}

.split-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-breakfast .split-image {
    background-image: url('../images/breakfast-banner.jpg');
}

.split-new-menu .split-image {
    background-image: url('../images/nowy-rozdzial-banner.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-color: #f8f7f2 !important;
    background-position: center !important;
}

.split-new-menu .split-content {
    background-color: #f8f7f2 !important;
}

.split-catering-home .split-image {
    background-image: url('../images/catering-home.jpg');
}

.split-wine-home .split-image {
    background-image: url('../images/wine-banner-new.jpg') !important;
}

.split-reservation .split-image {
    background-image: url('../images/rezerwacja sekcja www.jpeg') !important;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8%;
    background-color: var(--bg-sand);
    overflow: hidden;
}

.split-reservation .split-content {
    overflow: hidden;
    padding: 3.5rem 8% 2.5rem;
    text-align: center;
}

.split-reservation {
    max-height: 650px;
    overflow: hidden;
}

.split-content h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1A2541 !important;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.split-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}

.split-content > div {
    text-align: center;
    width: 100%;
}

@media (max-width: 992px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
    }
    .split-reservation {
        max-height: none;
    }
    .split-image {
        min-height: 350px;
    }
    .split-new-menu .split-image {
        min-height: 130vw !important;
    }
    .intro-title {
        font-size: 2.5rem;
    }
    .split-content h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1A2541 !important;
    line-height: 1.25;
    margin-bottom: 1rem;
}
}
/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #0d1b2a;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    width: auto;
    height: 45px;
    padding: 0 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn:hover {
    background-color: #1A2541;
    color: #ffffff;
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: auto;
        height: 40px;
        padding: 0 15px;
        font-size: 12px;
    }
}

/* EU Funding Banner */
.eu-banner-wrapper { width: 100%; background: #ffffff; border-bottom: 1px solid #e0e0e0; }
.eu-funding-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    background: #ffffff;
    border: none;
    gap: 3rem;
    }

.eu-banner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eu-banner-last {
    margin-left: 0;
}

.kpo-svg { height: 35px; width: auto; }

.kpo-text { font-family: 'Montserrat', sans-serif; color: #0b2265; font-size: 10px; font-weight: 700; line-height: 1.1; letter-spacing: 0.5px; }

.pl-svg { height: 25px; width: auto; border: 1px solid #eeeeee; }

.rp-text { font-family: 'Montserrat', sans-serif; color: #1a1a1a; font-size: 11px; font-weight: 700; line-height: 1.2; }

.eu-svg { height: 35px; width: auto; }

.eu-text { font-family: 'Montserrat', sans-serif; color: #1a1a1a; font-size: 10px; font-weight: 500; line-height: 1.2; text-align: right; } .eu-text strong { font-weight: 800; }

.eu-text strong {
    font-weight: 800;
}

@media (max-width: 1024px) {
    .eu-funding-banner {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0.8rem 5%;
        margin: 0 5% !important;
        gap: 0.8rem;
        background: #ffffff;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .eu-banner-item {
        gap: 0.5rem;
    }
    .kpo-svg, .eu-svg { height: 20px; }
    .pl-svg { height: 14px; }
    .kpo-text, .rp-text, .eu-text { font-size: 7px; line-height: 1; }
    .eu-banner-last {
        margin-left: 0;
        width: auto;
    }
}

@media (max-width: 480px) {
    .eu-funding-banner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.6rem 4%;
        margin: 0 4% !important;
        gap: 0.5rem;
    }
    .eu-banner-item {
        gap: 0.3rem;
    }
    .kpo-svg, .eu-svg { height: 16px; }
    .pl-svg { height: 12px; }
    .kpo-text, .rp-text { font-size: 6px; line-height: 1; }
    .eu-text { font-size: 6px; }
}

@media (max-width: 360px) {
    .eu-funding-banner {
        padding: 0.5rem 3%;
        margin: 0 3% !important;
        gap: 0.4rem;
    }
    .kpo-svg, .eu-svg { height: 14px; }
    .pl-svg { height: 10px; }
    .kpo-text, .rp-text, .eu-text { font-size: 5px; }
}


/* Circular Scroll to Top Format */
/* Note: .scroll-to-top-mobile is permanently hidden - main button handles all cases */
.scroll-to-top-mobile,
.scroll-to-top-mobile:hover {
    display: none !important;
}

.scroll-to-top, #scrollTopBtn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #1A2541 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(26, 42, 74, 0.4) !important;
    gap: 2px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.scroll-to-top:hover, #scrollTopBtn:hover {
    transform: translateY(-5px) !important;
}

.scroll-to-top svg, #scrollTopBtn i {
    margin: 0 !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 18px !important;
    display: block !important;
}

.scroll-to-top span, #scrollTopBtn span {
    margin: 0 !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    font-family: 'Montserrat', sans-serif !important;
}

@media (max-width: 1024px) {
    .scroll-to-top, #scrollTopBtn {
        width: 52px !important;
        height: 52px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .scroll-to-top span, #scrollTopBtn span {
        font-size: 7px !important;
        letter-spacing: 0 !important;
    }
    .scroll-to-top svg, #scrollTopBtn i {
        width: 15px !important;
        height: 15px !important;
        font-size: 14px !important;
        margin-bottom: 1px !important;
    }
}










/* Contact page — match attachment fonts (Cormorant Garamond + Lato) */
        .contact-section {
            padding: 3.5rem 5% 5rem 5%;
            background: #fbfaf7;
        }
        .contact-section .section-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #D4A24B;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}
        .contact-section .section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: #1A2541;
            line-height: 1.25;
            margin-bottom: 1rem;
        }
        .contact-section .section-desc {
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #5a6b82;
            line-height: 1.7;
            max-width: 560px;
            margin-bottom: 2.5rem;
        }
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }
        .contact-details-col .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }
        .contact-item .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(26,42,74,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #1A2541;
        }
        .contact-item .icon-circle svg {
            width: 20px;
            height: 20px;
        }
        .contact-item .item-label {
            font-family: 'Lato', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #5a6b82;
            margin-bottom: 0.25rem;
        }
        .contact-item .item-value {
            font-family: 'Lato', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: #1A2541;
        }
        .contact-item .item-value a {
            color: #1A2541;
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-item .item-value a:hover {
            color: #d4af37;
        }
        .hours-col h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 500;
            color: #1A2541;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(26,42,74,0.08);
        }
        .hours-col .hours-table {
            width: 100%;
            border-collapse: collapse;
        }
        .hours-col .hours-table td {
            font-family: 'Lato', sans-serif;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(26,42,74,0.06);
        }
        .hours-col .hours-table td:first-child {
            font-size: 0.95rem;
            font-weight: 400;
            color: #1A2541;
        }
        .hours-col .hours-table td:last-child {
            text-align: right;
            font-size: 0.95rem;
            font-weight: 700;
            color: #1A2541;
        }
        /* Map section below */
        .contact-map-section {
            width: 100%;
            height: 100%;
        }
        .contact-map-section .contact-map {
            border: 1px solid rgba(212,175,55,0.25);
            border-radius: 4px;
            height: 400px;
            overflow: hidden;
        }
        .contact-map-section .contact-map iframe {
            display: block;
            width: 100%;
            height: 100%;
        }
        /* NIP info under map */
        .nip-info {
            font-family: 'Lato', sans-serif;
            font-size: 0.85rem;
            color: #5a6b82;
            text-align: center;
            margin-top: 1.5rem;
        }
        @media (max-width: 1024px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .contact-section .section-heading {
                font-size: 1.3rem;
            }
            .contact-map-section .contact-map {
                height: 300px;
            }
            .reservation-contact-section {
                display: none !important;
            }
        }

/* CONTACT SEC TYPOGRAPHY FIXES */
.contact-subheading {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A2541;
    margin-bottom: 1rem;
}
.contact-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: #1A2541;
    line-height: 1.8;
}
.contact-link {
    color: #1A2541 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-weight: 400;
}
.contact-link:hover {
    color: #d4af37 !important;
}
.hours-container-block {
    margin-top: 2.5rem;
}
.hours-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: #1A2541;
    border-bottom: 1px solid rgba(26, 42, 74, 0.08);
}
.hours-item:last-child {
    border-bottom: none;
}
.hours-day {
    font-weight: 400;
}
.hours-time {
    font-weight: 400;
    color: #d4af37;
}

/* CONTACT TYPOGRAPHY MATCHING SCREENSHOT */
.contact-section > div:first-child {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.contact-section .section-heading {
    color: #d4af37 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
}

.contact-subheading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
    margin-bottom: 1.2rem !important;
}

.contact-text {
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    color: #1A2541 !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
}

.contact-link {
    color: #1A2541 !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    transition: color 0.3s ease !important;
}

.contact-link:hover {
    color: #d4af37 !important;
}

/* HORIZONTAL HOURS FOR DESKTOP */
@media (min-width: 1025px) {
    .hours-col {
        grid-column: span 2 !important;
    }
    
    .hours-container {
        flex-direction: column !important;
    }
    
    .hours-item {
        border-bottom: 1px solid rgba(26, 42, 74, 0.08) !important;
        padding: 0.8rem 0 !important;
        justify-content: space-between !important;
    }
    .hours-item:last-child {
        border-bottom: none !important;
    }
}

/* BUTTON & CONTACT HEADING UPDATES */
.contact-section .section-heading {
    color: #1A2541 !important; /* Changed to granatowe as requested */
}

.header-btn {
    text-transform: uppercase !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.85rem !important;
}

/* BUTTON TWEAKS */
.header-btn {
    font-weight: 600 !important;
    padding: 0.7rem 1.8rem !important;
    font-size: 0.9rem !important;
}

/* FINAL HEADER BTN FIX */
.header-btn {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 0.8rem 1.8rem !important;
    border: 1px solid #1A2541 !important;
    color: #1A2541 !important;
    background: transparent !important;
    font-family: 'Lato', sans-serif !important;
    transition: all 0.3s ease !important;
}

.header-btn:hover {
    color: #ffffff !important;
    background: #1A2541 !important;
    border-color: #1A2541 !important;
}

/* EU LOGOS STRIP TWEAKS (20% SMALLER, NO BOLD, RIGHT ALIGNED) */
.eu-logos-strip {
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: flex-end;
    padding: 8px 5%;
    box-sizing: border-box;
}

.eu-logos-strip .eu-funding-banner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    background: transparent;
    gap: 1.6rem; /* 2.0rem * 0.8 */
    max-width: none;
    width: auto;
}

.eu-logos-strip .eu-banner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* 1.0rem * 0.8 */
}

.eu-logos-strip .eu-banner-last {
    margin-left: 0;
}

.eu-logos-strip .kpo-svg {
    height: 28px; /* 35px * 0.8 */
    width: auto;
}

.eu-logos-strip .pl-svg {
    height: 20px; /* 25px * 0.8 */
    width: auto;
}

.eu-logos-strip .eu-svg {
    height: 28px; /* 35px * 0.8 */
    width: auto;
}

.eu-logos-strip .kpo-text {
    font-family: 'Montserrat', sans-serif;
    color: #0b2265;
    font-size: 8px; /* 10px * 0.8 */
    font-weight: 500 !important; /* removed bold */
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.eu-logos-strip .rp-text {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    font-size: 8.8px; /* 11px * 0.8 */
    font-weight: 500 !important; /* removed bold */
    line-height: 1.2;
}

.eu-logos-strip .eu-text {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    font-size: 8px; /* 10px * 0.8 */
    font-weight: 500 !important;
    line-height: 1.2;
    text-align: right;
}

.eu-logos-strip .eu-text strong {
    font-weight: 500 !important; /* removed bold */
}

@media (max-width: 1024px) {
    .eu-logos-strip {
        padding: 6px 4%;
        justify-content: flex-end;
    }
    .eu-logos-strip .eu-funding-banner {
        gap: 0.64rem;
        flex-wrap: nowrap; /* Keep it on one line to look neat, or wrap if it's very narrow */
        justify-content: flex-end;
    }
    .eu-logos-strip .eu-banner-item {
        gap: 0.4rem;
    }
    .eu-logos-strip .kpo-svg, 
    .eu-logos-strip .eu-svg {
        height: 18px; /* Slightly adjusted to fit but be readable */
    }
    .eu-logos-strip .pl-svg {
        height: 13px;
    }
    .eu-logos-strip .kpo-text, 
    .eu-logos-strip .rp-text, 
    .eu-logos-strip .eu-text {
        font-size: 5.6px;
    }
}

@media (max-width: 600px) {
    .eu-logos-strip {
        padding: 5px 3%;
    }
    .eu-logos-strip .eu-funding-banner {
        gap: 0.4rem;
        flex-wrap: wrap; /* allow wrapping on very small mobile screens */
        justify-content: flex-end;
    }
}

/* EU Funding Banner overlay on Hero Slider (Bottom-Right, Offset) */
.hero-eu-banner {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 5; /* Above slider images (z-index 2) but below header (z-index 1000) */
    background-color: #ffffff;
    padding: 7px 11px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-eu-banner img {
    height: 25px; /* Reduced by 10% */
    width: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-eu-banner {
        right: 15px;
        top: 15px;
        bottom: auto; /* Repositioned to top-right to avoid button overlaps */
        padding: 5px 9px;
    }
    .hero-eu-banner img {
        height: 18px; /* Reduced by 10% */
    }
}

@media (max-width: 480px) {
    .hero-eu-banner {
        right: 10px;
        top: 10px;
        bottom: auto;
        padding: 4px 8px;
    }
    .hero-eu-banner img {
        height: 14px; /* Reduced by 10% */
    }
}


/* Hide hamburger on desktop (>= 901px) */
@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }
}

/* Custom overrides for mobile styling requested by the user */
@media (max-width: 1024px) {
    /* Base font size reduction */
    body {
        font-size: 14px !important;
    }
    
    /* Spacing fixes */
    section:not(.hero) {
        padding: 4.5rem 5% 2rem 5% !important;
    }
    .intro-section {
        padding: 2rem 5% !important;
    }
    .split-content {
        padding: 2rem 5% !important;
    }
    .contact-section {
        padding: 2.2rem 5% 2rem 5% !important;
    }
    .contact-section > div:first-child {
        margin-bottom: 1.2rem !important;
    }
    
    /* Font size reductions */
    section h2 {
        font-size: 22px !important;
        margin-bottom: 1.5rem !important;
    }
    .intro-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    .intro-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    .split-content h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1A2541 !important;
    line-height: 1.25;
    margin-bottom: 1rem;
}
    .split-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    .contact-section .section-heading {
        font-size: 1.2rem !important;
    }
    .contact-subheading {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Hamburger menu font and spacing adjustments */
    .nav-links a {
        padding: 0.5rem 0 !important;
        font-size: 1.2rem !important;
        color: #1A2541 !important;
    }
    .nav-links {
        padding-top: 80px !important;
    }
    
    /* Mobile nav footer in one row */
    .nav-mobile-footer {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 1.2rem 0 !important;
        gap: 2rem !important;
        border-top: 1px solid rgba(26, 42, 74, 0.15) !important;
        margin-top: 2rem !important;
    }
    .nav-mobile-footer a {
        color: #1A2541 !important;
        display: inline-flex !important;
        align-items: center !important;
        padding: 0.4rem !important;
        text-decoration: none !important;
    }
    .nav-mobile-footer a svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
    }
    .nav-mobile-footer a:hover {
        color: #d4af37 !important;
    }
    .nav-mobile-footer .lang-switch-mobile {
        color: #1A2541 !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        border: none !important;
        background: none !important;
        padding: 0.4rem !important;
    }
    .nav-mobile-footer .lang-switch-mobile:hover {
        color: #d4af37 !important;
    }
}

/* ============================================================
   MOBILE HEADER, HERO BANNER & SLIDER OVERRIDES (MOBILE ONLY)
   ============================================================ */

/* Hide mobile-specific header controls on desktop */
.mobile-header-right {
    display: none !important;
}

@media (max-width: 1024px) {
    /* 1. Mobile Header & Navigation Layout (Logo Left, Hamburger Center, Socials+Lang Right) */
    nav {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.8rem 3% !important; /* Pushed further to sides */
        width: 100% !important;
        min-height: 70px !important;
    }

    /* Logo container on the far left - no circle border, transparent background */
    .logo {
        border-radius: 0 !important;
        border: none !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        background: transparent !important;
        margin-right: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        box-shadow: none !important;
    }

    .logo a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .logo-img {
        width: auto !important;
        height: 48px !important; /* Perfect visibility */
        object-fit: contain !important;
        max-width: none !important;
    }

    /* Classic Hamburger menu placed in the absolute center (3 granatowe paski) */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 24px !important;
        height: 16px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1002 !important;
        cursor: pointer !important;
    }

    /* Hamburger bars - default navy */
    .bar {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #1A2541 !important;
        border-radius: 2px !important;
        margin: 0 !important;
        transition: all 0.3s ease-in-out !important;
    }

    /* Active (open) Hamburger overrides to top right close button */
    .hamburger.active {
        position: fixed !important;
        right: 3% !important;
        left: auto !important;
        transform: none !important;
        top: 1.5rem !important;
        z-index: 1002 !important;
    }

    /* Rotate classic hamburger bars to form X when open */
    .hamburger.active .bar {
        background-color: #1A2541 !important; /* Navy on white background */
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* Mobile Header Right elements (Socials + PL/EN toggle) on the far right */
    .mobile-header-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.7rem !important;
        margin-left: auto !important;
    }

    .mobile-header-right a {
        color: #1A2541 !important;
        display: inline-flex !important;
        align-items: center !important;
        text-decoration: none !important;
        padding: 0.3rem !important;
    }

    .mobile-header-right a svg {
        width: 18px !important;
        height: 18px !important;
        fill: currentColor;
    }

    .mobile-header-right a svg[stroke] {
        fill: none;
    }

    .lang-switch-mobile-top {
        font-family: 'Lato', sans-serif !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-left: 0.1rem !important;
        color: #1A2541 !important;
        border-left: 1px solid rgba(26, 42, 74, 0.2) !important;
        padding-left: 0.6rem !important;
    }

    /* Hide standard desktop elements on mobile top bar */
    nav .header-actions,
    nav .nav-social,
    nav .lang-switch-top {
        display: none !important;
    }
    .desktop-only { display:none !important; }

    /* Show amenities icons row on mobile/tablet */
    .features-section {
        display: block !important;
    }

    /* 2. Hero Banner Height increased to 75vh and touch-action set for swipe compatibility */
    .hero, 
    .hero-content, 
    .hero-image-slider, 
    .hero-image-slider img {
        touch-action: pan-y !important; /* Allows vertical scroll, reserves horizontal swipe for JS */
    }

    /* Mobile: lower the image by 20% (shift focus point down from 65% to 85%) */
    .hero-image-slider img {
        object-position: center calc(85% - 40px) !important;
    }

    .hero {
        min-height: 75vh !important; /* 75% of viewport height */
        height: 75vh !important;
    }

    /* 3. Hero Action Buttons (Transparent with white border, white text, stacked vertically) */
    /* Positioned lower using bottom padding on the hero content wrapper */
    .hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        padding-bottom: 5.5rem !important; /* Leaves clear space for dots at the bottom */
    }

    .hero .hero-content .btn {
        width: 100% !important;
        background-color: transparent !important;
        border: 1px solid #ffffff !important;
        color: #ffffff !important;
        text-align: center !important;
        padding: 0.75rem 1.2rem !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }

    .hero .hero-content .btn:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        border-color: #ffffff !important;
    }

    .hero .section-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.7rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 0 auto !important; /* No bottom margin, handled by container padding */
        align-items: center !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* 5. Subpage Headings & Section Spacing Overrides (Mobile Only) */
    .story-section, 
    .gallery-section, 
    .subpage-hero,
    .menu-page-header {
        padding: 5rem 5% 1.5rem 5% !important;
    }
    
    .story-intro h1, 
    .gallery-section h1, 
    .menu-page-header h1,
    .subpage-hero h1 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
        margin-top: 0 !important;
        font-weight: 500 !important;
    }

    .intro-badge {
        margin-bottom: 0.5rem !important;
    }

    .story-intro {
        margin-bottom: 2rem !important;
    }

    .gallery-masonry, 
    .catering-images, 
    .menu-tabs {
        margin-top: 1.5rem !important;
    }

    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .story-card-number {
        font-size: 4rem !important;
    }
}

/* Specific viewport height overrides for smaller/narrow devices to keep banner 75% taller */
@media (max-width: 360px) {
    .hero {
        min-height: 68vh !important;
        height: 68vh !important;
    }
}

@media (min-width: 421px) and (max-width: 600px) {
    .hero {
        min-height: 72vh !important;
        height: 72vh !important;
    }
}

/* 4. Slider Dots Styling (Visible on all viewports, styled premium) */
.hero-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    z-index: 15;
    justify-content: center;
    align-items: center;
}

.hero-dot {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    cursor: pointer;
    border: none;
    padding: 0;
    outline: none !important;
    background: transparent;
    position: relative;
    display: block;
}

.hero-dot::after {
    content: "";
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 3px;
    transition: all 0.3s ease;
}

.hero-dot:hover::after,
.hero-dot.active::after {
    margin: 0;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}


/* === MERGED FROM v2/style.css === */

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-navy);
}

.footer-bottom {
    flex-direction: column;
        gap: 1rem;
        text-align: center;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-grid {
    grid-template-columns: 1fr;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(26, 42, 74, 0.15);
    background-color: var(--bg-cream);
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-navy);
    background-color: #ffffff;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-masonry {
    columns: 4 250px;
    column-gap: 1.5rem;
}

.gallery-masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.gallery-masonry-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.gallery-masonry-item:hover img {
    transform: scale(1.05);
}

.gallery-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-section h1 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hamburger span {
    display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #1A2541 !important; 
        border-radius: 2px !important;
        margin: 0 !important;
        transition: all 0.3s ease-in-out !important;
}

.hamburger.open {
    position: fixed !important;
        right: 3% !important;
        left: auto !important;
        transform: none !important;
        top: 1.5rem !important;
        z-index: 1002 !important;
}

.hamburger.open span {
    background-color: #ffffff !important;
}

.hero .hero-btn-container {
    display: flex !important;
        flex-direction: column !important;
        gap: 0.7rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 0 auto !important; 
        align-items: center !important;
        position: relative !important;
        z-index: 10 !important;
}

.hero .hero-btn-container .btn {
    width: 100% !important;
        background-color: transparent !important;
        border: 1px solid #ffffff !important;
        color: #ffffff !important;
        text-align: center !important;
        padding: 0.75rem 1.2rem !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
}

.hero .hero-btn-container .btn:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        border-color: #ffffff !important;
}

.hero, 
    .hero-content, 
    .hero-slider, 
    .hero-slide {
    touch-action: pan-y !important;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-slide {
    position: relative !important;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 42, 74, 0.4), rgba(26, 42, 74, 0.65));
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex !important;
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.lang-switch:hover {
    background: var(--bg-sand);
    color: var(--accent-gold-dark);
}

.menu-category-notes {
    text-align: center;
    font-style: italic;
    color: var(--accent-gold-dark);
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 8rem 5%;
}

.menu-item-block {
    display: flex;
    flex-direction: column;
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-line {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(26, 42, 74, 0.15);
    margin: 0 1rem;
}

.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold-dark);
}

.menu-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.menu-page-header {
    background-color: var(--bg-sand);
    padding: 8rem 5% 4rem 5%;
    text-align: center;
}

.menu-page-header h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.menu-section {
    display: none;
    animation: fadeIn 0.6s ease-in-out forwards;
}

.menu-section-grid {
    grid-template-columns: 1fr;
        gap: 2rem;
}

.menu-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-section-header h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.menu-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background-color: var(--accent-gold);
}

.menu-section.active {
    display: block;
}

.menu-tab-btn {
    background: none;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background-color: rgba(26, 42, 74, 0.03);
}

.menu-tab-btn.active {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.menu-tab-btn:hover {
    color: var(--primary-navy);
    background-color: rgba(26, 42, 74, 0.08);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 0 1rem;
}

.nav-links a.nav-gold {
    color: var(--accent-gold-dark);
    font-weight: 500;
}

.nav-links a.nav-gold:hover {
    color: var(--primary-navy);
}

.nav-links a::after {
    background-color: #d4af37 !important;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links.open {
    right: 0 !important;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-navy);
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.reservation-form-container {
    padding: 2rem;
}

.reservation-form-container h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.reservation-grid {
    grid-template-columns: 1fr;
        gap: 4rem;
}

.reservation-info {
    display: none !important;
}

.reservation-info h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.reservation-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.reservation-info-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reservation-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.reservation-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reservation-intro-mobile {
    display: block !important;
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
}

.reservation-intro-mobile,
.reservation-notes-mobile {
    display: none !important;
}

.reservation-notes-mobile {
    display: block !important;
        margin-top: 2rem;
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--primary-navy);
        text-align: left;
}

.reservation-section {
    padding: 8rem 5%;
    background-color: var(--bg-cream);
    max-width: 1400px;
    margin: 0 auto;
}

.scroll-to-top svg, #scrollTopBtn i, .scroll-to-top-mobile svg {
    width: 15px !important;
        height: 15px !important;
        font-size: 14px !important;
        margin-bottom: 1px !important;
}

.scroll-to-top, #scrollTopBtn, .scroll-to-top-mobile {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #1A2541 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(26, 42, 74, 0.4) !important;
    gap: 2px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.scroll-to-top:hover, #scrollTopBtn:hover, .scroll-to-top-mobile:hover {
    transform: translateY(-5px) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.story-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.story-card h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1A2541;
    margin-bottom: 1rem;
}

.story-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.story-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    color: #D4A24B;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    letter-spacing: -2px;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 42, 74, 0.05);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 5%;
}

.story-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.story-intro h1 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-intro p {
    font-size: 1.1rem;
    color: #5C6B7C;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-intro .btn {
    display: inline-block;
    margin-top: 1rem;
}

.story-section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--primary-navy);
}

header.scrolled {
    padding: 0.2rem 0;
    box-shadow: 0 4px 20px rgba(26, 42, 74, 0.04);
}

header.scrolled .logo-img {
    height: 60px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GLOBAL H2 TYPOGRAPHY — UNIFIED DESIGN ===== */
h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
    line-height: 1.15 !important;
}

h2, .section-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
}

/* Section labels — gold, uppercase, letter-spaced */
.section-label,
.about .section-label,
.contact .section-label,
.menu .section-label,
.wine .section-label,
.catering .section-label {
    font-family: 'Lato', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #D4A24B !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
}

/* Body text — Lato 300, slate gray */
p, .menu-item p, .wine-item p, .about p, .split-content p,
.catering p, .contact p, .reservation p, footer p {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
    color: #5C6B7C !important;
    line-height: 1.7 !important;
}

/* Links — consistent hover */
a {
    color: #1A2541;
    transition: color 0.3s ease;
}
a:hover {
    color: #D4A24B;
}

/* Buttons — navy with gold hover */
.btn, .btn-primary, .hero-cta a {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* CTA buttons on hero */
.hero-cta a {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid #1A2541;
    color: #1A2541;
    background: transparent;
    transition: all 0.3s ease;
}

.hero-cta a:hover {
    background: #1A2541;
    color: #ffffff;
}

.hero-cta a.primary {
    background: #D4A24B;
    border-color: #D4A24B;
    color: #ffffff;
}

.hero-cta a.primary:hover {
    background: #C49340;
    border-color: #C49340;
}

/* Contact section */
.contact h2, .contact h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
}

/* Footer */
footer {
    font-family: 'Lato', sans-serif;
    color: #5C6B7C;
}

/* Mobile responsiveness for typography */

/* ===== UNIFIED TYPOGRAPHY — ALL SECTIONS ===== */

/* Section labels (O NAS, NOWOŚĆ, REZERWACJA, etc.) */
.section-label,
.about .section-label,
.contact .section-label,
.menu .section-label,
.wine .section-label,
.catering .section-label,
.gallery .section-label,
.privacy .section-label {
    font-family: 'Lato', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #D4A24B !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 1rem !important;
}

/* All H1 — Cormorant Garamond, dark navy */
h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
    line-height: 1.1 !important;
}

/* All H2 — Cormorant Garamond, dark navy */
h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
    line-height: 1.15 !important;
}

/* All H3 — Cormorant Garamond, dark navy */
h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
}

/* All H4 — Lato, dark navy */
h4 {
    font-family: 'Lato', sans-serif !important;
    font-weight: 500 !important;
    color: #1A2541 !important;
}

/* All body paragraphs — Lato 300, slate gray */
p, li, td, th, label, span, div {
    font-family: 'Lato', sans-serif !important;
}

/* Menu items, descriptions */
.menu-item h4,
.menu-item p,
.wine-item h4,
.wine-item p {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
    color: #5C6B7C !important;
}

/* Links */
a {
    color: #1A2541;
    transition: color 0.3s ease;
    text-decoration: none;
}
a:hover {
    color: #D4A24B;
}

/* Buttons */
.btn, .btn-primary, button[type="submit"] {
    font-family: 'Lato', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

/* CTA buttons */
.hero-cta a,
.cta-button,
.cta-btn,
a.btn {
    font-family: 'Lato', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 1rem 2rem !important;
    display: inline-block !important;
    border: 2px solid #1A2541 !important;
    color: #1A2541 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.hero-cta a:hover,
.cta-button:hover,
.cta-btn:hover,
a.btn:hover {
    background: #1A2541 !important;
    color: #ffffff !important;
}

/* Catering/Wine bottom highlight paragraphs */
.catering p.highlight,
.wine p.highlight,
p[style*="font-weight: 700"],
p[style*="font-weight:600"] {
    font-family: 'Lato', sans-serif !important;
    font-weight: 600 !important;
    color: #D4A24B !important;
    font-style: normal !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Reservation form */
.reservation h2,
.reservation-contact-left h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: #1A2541 !important;
}

/* Contact section — unified */
.contact h2 {
    color: #1A2541 !important;
}
.contact h3 {
    color: #1A2541 !important;
}
.contact p {
    color: #5C6B7C !important;
    font-weight: 300 !important;
}
.contact a {
    color: #1A2541 !important;
}
.contact a:hover {
    color: #D4A24B !important;
}

/* Footer */
footer p,
footer a {
    font-family: 'Lato', sans-serif !important;
    color: #5C6B7C !important;
}
footer a:hover {
    color: #D4A24B !important;
}
footer a.footer-gold-link {
    color: #D4A24B !important;
    font-weight: 500 !important;
}
footer a.footer-gold-link:hover {
    color: #bfa15f !important;
    text-decoration: underline !important;
}
body footer {
    padding: 1rem 0 !important;
}



/* Privacy page */
.privacy h1,
.privacy h2,
.privacy h3 {
    font-family: 'Cormorant Garamond', serif !important;
    color: #1A2541 !important;
}
.privacy p,
.privacy li {
    color: #5C6B7C !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
}

/* Mobile responsive typography */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.4rem !important; }
    p { font-size: 16px !important; }
    .section-label { font-size: 12px !important; }
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2.2rem;
    }
    .about p {
        font-size: 16px;
    }
    h2 {
        font-size: 2rem !important;
    }
}

.wine-footer-note {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #8A9AB5;
    margin-top: calc(1.5rem + 5px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wine-logo {
    max-width: 200px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 1.5rem auto !important;
    display: block !important;
}

.story-advice h2 {
    margin-top: 3.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* ============================================================
   MOBILE RESERVATION FORM FIXES (Tablet + Mobile)
   ============================================================ */
@media (max-width: 1024px) {
    /* Narrower form fields on mobile */
    .reservation-form-mini .form-group-mini {
        width: 85% !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Shorter fields — less padding */
    .reservation-form-mini .form-group-mini select,
    .reservation-form-mini .form-group-mini input {
        padding: 0.45rem 0.75rem;
        font-size: 14px;
        text-align: center;
        text-align-last: center;
    }

    /* Tighter label spacing */
    .reservation-form-mini .form-group-mini label {
        margin-bottom: 0.25rem;
        font-size: 12px;
    }

    /* Tighter gap between field rows */
    .reservation-form-mini .form-row-inline {
        gap: 0.4rem 0.75rem;
    }

    /* Button directly under phone field with less gap */
    .form-row-bottom .btn-find {
        margin-top: 0;
        min-width: 0;
        width: 85%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 0.6rem 2rem;
    }

    /* Move reservation notes higher */
    .reservation-notes-bottom {
        margin-top: 0.5rem !important;
    }

    .reservation-notes-bottom p {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
    }
}


/* Obnizenie slowa Zamow o 2px */
.menu > div > h3 {
    position: relative;
    top: 2px;
}

/* Przyczepiony na stale przycisk dostawy na mobile */
.mobile-delivery-sticky {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-delivery-sticky {
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 70px;
        margin-top: 70px;
        background: #ffffff;
        padding: 0.6rem 1.5rem;
        z-index: 999;
        border-bottom: 1px solid rgba(26, 42, 74, 0.1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .mobile-delivery-sticky a {
        display: inline-block;
        width: 100%;
        max-width: 320px;
        text-align: center;
        border: 2px solid #1A2541 !important;
        color: #1A2541 !important;
        background: transparent !important;
        padding: 0.8rem 1rem !important;
        text-decoration: none !important;
        font-family: 'Lato', sans-serif !important;
        font-weight: 500 !important;
        font-size: clamp(10px, 3.8vw, 14px) !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        transition: all 0.3s ease;
        white-space: nowrap !important;
    }
    
    .mobile-delivery-sticky a:active {
        background: #1A2541 !important;
        color: #ffffff !important;
    }
}

/* Odstep nad Bistro Bravo pod godzinami otwarcia na podstronach */
.hours-container-block + .contact-text-group {
    margin-top: 2.2rem;
}

/* Centering the gallery badge */
.gallery-section {
    text-align: center !important;
}

/* Restructuring gallery grid layout */
.gallery-masonry {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    columns: auto !important; /* Reset columns layout */
}

.gallery-masonry-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0 !important; /* Spacing handled by grid gap */
}

@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Bring catering subheading closer to paragraph text */
.story-intro h2 {
    margin-bottom: 0.5rem !important;
}

body .features-section {
    display: block !important;
    padding: 3rem 2rem 0.5rem 2rem !important;
}


body .features-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

body .features-container .feature-item {
    flex: 1 1 0px !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

body .feature-item svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #ae8b35 !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
}

body .feature-item:hover svg {
    stroke: #d4af37 !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
}

body .feature-item span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #5a6a7a !important;
    text-align: center !important;
}

@media (max-width: 1100px) {
    body .features-container {
        gap: 1rem !important;
    }
    body .feature-item span {
        font-size: 9px !important;
    }
}

@media (max-width: 768px) {
    body .features-section {
        padding: 2rem 0.5rem 0.5rem 0.5rem !important;
    }
    body .features-container {
        gap: 0.5rem !important;
    }
    body .feature-item svg {
        width: 20px !important;
        height: 20px !important;
    }
    body .feature-item span {
        font-size: 8px !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 480px) {
    body .features-section {
        padding: 1.5rem 0.25rem 0.4rem 0.25rem !important;
    }
    body .features-container {
        gap: 0.2rem !important;
    }
    body .feature-item svg {
        width: 16px !important;
        height: 16px !important;
    }
    body .feature-item span {
        font-size: 6.5px !important;
        line-height: 1.1 !important;
    }
}

/* Custom changes for desktop main banner (Hero slider and action buttons) */
@media (min-width: 1025px) {
    /* Precise layout position of each image in the slider on desktop to keep food in focus */
    .hero-image-slider img.slider-img-golonka {
        object-position: center 45% !important;
    }
    .hero-image-slider img.slider-img-miruna {
        object-position: center 50% !important;
    }
    .hero-image-slider img.slider-img-sala-bar {
        object-position: center 50% !important;
    }
    .hero-image-slider img.slider-img-dol-sklep-wino {
        object-position: center 50% !important;
    }

    /* Hero Content container layout for desktop: align to bottom-left */
    .hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* Dark plate (apla) for buttons on desktop, sitting flush at the bottom-left */
    .hero .section-buttons {
        background-color: rgba(18, 24, 38, 0.82) !important; /* Premium dark navy plate */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 2.8rem 2.2rem !important; /* Spacing inside the plate */
        margin: 0 !important;
        width: 100% !important;
        max-width: 360px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.1rem !important;
        align-items: stretch !important;
        box-shadow: 10px -10px 30px rgba(0, 0, 0, 0.3) !important;
        z-index: 10 !important;
        border-top-right-radius: 4px !important; /* Premium card corner */
        position: static !important;
        top: auto !important;
    }

    /* Action buttons: white borders/text by default, gentle white glow effect on hover */
    .hero-content .btn {
        width: 100% !important;
        margin: 0 !important;
        padding: 0.9rem 1.2rem !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        text-align: center !important;
        background-color: transparent !important;
        border: 1px solid #ffffff !important;
    /* Button directly under phone field with less gap */
    .form-row-bottom .btn-find {
        margin-top: 0;
        min-width: 0;
        width: 85%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 0.6rem 2rem;
    }

    /* Move reservation notes higher */
    .reservation-notes-bottom {
        margin-top: 0.5rem !important;
    }

    .reservation-notes-bottom p {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
    }
}


/* Obnizenie slowa Zamow o 2px */
.menu > div > h3 {
    position: relative;
    top: 2px;
}

/* Przyczepiony na stale przycisk dostawy na mobile */
.mobile-delivery-sticky {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-delivery-sticky {
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 70px;
        margin-top: 70px;
        background: #ffffff;
        padding: 0.6rem 1.5rem;
        z-index: 999;
        border-bottom: 1px solid rgba(26, 42, 74, 0.1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .mobile-delivery-sticky a {
        display: inline-block;
        width: 100%;
        max-width: 320px;
        text-align: center;
        border: 2px solid #1A2541 !important;
        color: #1A2541 !important;
        background: transparent !important;
        padding: 0.8rem 1rem !important;
        text-decoration: none !important;
        font-family: 'Lato', sans-serif !important;
        font-weight: 500 !important;
        font-size: clamp(10px, 3.8vw, 14px) !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        transition: all 0.3s ease;
        white-space: nowrap !important;
    }
    
    .mobile-delivery-sticky a:active {
        background: #1A2541 !important;
        color: #ffffff !important;
    }
}

/* Odstep nad Bistro Bravo pod godzinami otwarcia na podstronach */
.hours-container-block + .contact-text-group {
    margin-top: 2.2rem;
}

/* Centering the gallery badge */
.gallery-section {
    text-align: center !important;
}

/* Restructuring gallery grid layout */
.gallery-masonry {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    columns: auto !important; /* Reset columns layout */
}

.gallery-masonry-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0 !important; /* Spacing handled by grid gap */
}

@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Bring catering subheading closer to paragraph text */
.story-intro h2 {
    margin-bottom: 0.5rem !important;
}



/* Custom changes for desktop main banner (Hero slider and action buttons) */
@media (min-width: 1025px) {
    /* Precise layout position of each image in the slider on desktop to keep food in focus */
    .hero-image-slider img.slider-img-golonka {
        object-position: center 45% !important;
    }
    .hero-image-slider img.slider-img-miruna {
        object-position: center 50% !important;
    }
    .hero-image-slider img.slider-img-sala-bar {
        object-position: center 50% !important;
    }
    .hero-image-slider img.slider-img-dol-sklep-wino {
        object-position: center 50% !important;
    }

    /* Hero Content container layout for desktop: align to bottom-left */
    .hero .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* Dark plate (apla) for buttons on desktop, sitting flush at the bottom-left */
    .hero .section-buttons {
        background-color: rgba(18, 24, 38, 0.82) !important; /* Premium dark navy plate */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 2.8rem 2.2rem !important; /* Spacing inside the plate */
        margin: 0 !important;
        width: 100% !important;
        max-width: 360px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.1rem !important;
        align-items: stretch !important;
        box-shadow: 10px -10px 30px rgba(0, 0, 0, 0.3) !important;
        z-index: 10 !important;
        border-top-right-radius: 4px !important; /* Premium card corner */
        position: static !important;
        top: auto !important;
    }

    /* Action buttons: white borders/text by default, gentle white glow effect on hover */
    .hero-content .btn {
        width: 100% !important;
        margin: 0 !important;
        padding: 0.9rem 1.2rem !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        text-align: center !important;
        background-color: transparent !important;
        border: 1px solid #ffffff !important;
        color: #ffffff !important;
        box-shadow: none !important;
        text-shadow: none !important;
        transition: all 0.3s ease-in-out !important;
        display: block !important;
        white-space: nowrap !important;
    }
    .hero-content .btn:hover {
        background-color: #ffffff !important;
        border-color: #ffffff !important;
        color: #1A2541 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* ============================================================
   TRANSPARENT HEADER PAGE (Homepage specific)
   ============================================================ */
body.transparent-header-page .hero {
    margin-top: 0 !important;
    height: 100vh !important;
}

/* Smooth transition for normal fixed header */
header {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

body.transparent-header-page header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

body.transparent-header-page header.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(26, 42, 74, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Keep logo image unchanged when header is transparent */
body.transparent-header-page header:not(.scrolled) .logo-img {
    filter: none !important;
}


    body.transparent-header-page header:not(.scrolled) .nav-links a {
        color: #ffffff !important;
    }
    body.transparent-header-page header:not(.scrolled) .hamburger .bar {
        background-color: #ffffff !important;
        transition: background-color 0.3s ease !important;
    }

/* Social links and lang switch on desktop/mobile when transparent */
body.transparent-header-page header:not(.scrolled) .nav-social a,
body.transparent-header-page header:not(.scrolled) .mobile-header-right a,
body.transparent-header-page header:not(.scrolled) .lang-switch-top {
    color: #ffffff !important;
    transition: color 0.3s ease !important;
}
body.transparent-header-page header:not(.scrolled) .nav-social a:hover,
body.transparent-header-page header:not(.scrolled) .mobile-header-right a:hover,
body.transparent-header-page header:not(.scrolled) .lang-switch-top:hover {
    color: #d4af37 !important;
}

/* Action button (phone/delivery) white when transparent */
body.transparent-header-page header:not(.scrolled) .header-btn {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}
body.transparent-header-page header:not(.scrolled) .header-btn:hover {
    background: #ffffff !important;
    color: #1A2541 !important;
    border-color: #ffffff !important;
}

/* Underline effect for desktop nav links and disable hover color change to gold */
@media (min-width: 1025px) {
    .nav-links a {
        position: relative !important;
        padding-bottom: 4px !important;
    }
    
    .nav-links a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 0 !important;
        height: 1.5px !important;
        background-color: #1A2541 !important; /* Navy line on white background */
        transition: width 0.3s ease !important;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100% !important;
    }

    /* Disable hover and active color change to gold on desktop */
    .nav-links a:hover,
    .nav-links a.active {
        color: #1A2541 !important;
    }

    /* Ensure gold links keep their gold color on hover/active instead of changing to navy */
    .nav-links a.nav-gold:hover,
    .nav-links a.nav-gold.active {
        color: #ae8b35 !important;
    }

    /* Transparent state: white underline and white text hover/active */
    body.transparent-header-page header:not(.scrolled) .nav-links a::after {
        background-color: #ffffff !important;
    }
    body.transparent-header-page header:not(.scrolled) .nav-links a:hover,
    body.transparent-header-page header:not(.scrolled) .nav-links a.active {
        color: #ffffff !important;
    }
}

/* ============================================================
   MOBILE TRANSPARENT HEADER (homepage hero to top)
   ============================================================ */
@media (max-width: 1024px) {
    body.transparent-header-page header {
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
    body.transparent-header-page header.scrolled {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(26, 42, 74, 0.1) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }
    body.transparent-header-page header:not(.scrolled) .hamburger .bar {
        background-color: #ffffff !important;
    }
    body.transparent-header-page header:not(.scrolled) .hamburger.active .bar {
        background-color: #1A2541 !important;
    }
    body.transparent-header-page header:not(.scrolled) .mobile-header-right a {
        color: #ffffff !important;
    }
    body.transparent-header-page header:not(.scrolled) .lang-switch-mobile-top {
        color: #ffffff !important;
        border-left-color: rgba(255, 255, 255, 0.3) !important;
    }
    body.transparent-header-page .hero {
        margin-top: 0 !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
}

/* Hide gallery items 2, 4, 5, 6 on mobile (max-width: 768px) on About page */
@media (max-width: 768px) {
    .story-section .gallery-masonry-item {
        display: none !important;
    }
    .story-section .gallery-masonry-item:nth-child(1),
    .story-section .gallery-masonry-item:nth-child(3) {
        display: block !important;
    }
}

/* Center action buttons in split sections on mobile */
@media (max-width: 1024px) {
    .split-content > div {
        text-align: center !important;
    }
    .menu-order-btn .btn,
    .menu-order-btn a.btn {
        white-space: nowrap !important;
        font-size: clamp(10px, 3.8vw, 14px) !important;
        padding: 0.8rem 1rem !important;
        max-width: 100% !important;
        width: fit-content !important;
        display: inline-block !important;
    }
}

/* Responsive Footer Policy Link Wrapping */
.footer-policy-link {
    white-space: nowrap !important;
}
.footer-divider {
    margin: 0 0.5rem;
    color: rgba(26, 42, 74, 0.3);
}
@media (max-width: 768px) {
    .footer-divider {
        display: none !important;
    }
    .footer-policy-link {
        display: block !important;
        margin-top: 0.4rem !important;
        white-space: normal !important;
    }
}


