/* Google Fonts - Libre Baskerville for headings, Lato for body (similar to Avenir Light) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400&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: #1a2a4a;
    /* 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: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hamburger {
    display: none;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #1a2a4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    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 */
.header-actions {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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


/* Shared styles for both buttons */
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    /* Default Navy Outline */
    background: #1a2a4a;
    border: 1px solid #1a2a4a;
    color: #ffffff;
}

/* Gold background on hover for BOTH buttons */
.header-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #ffffff;
}



.nav-social {
    display: flex;
    gap: 1rem;
}

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

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



/* Hero Section - Split Layout */
/* Hero Section - Stacked Layout */
.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 80px;
    margin-left: 2rem;
    margin-right: 2rem;
    position: relative;
    border: 2px solid #d4af37;
    border-radius: 4px;
    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: 'Libre Baskerville', serif;
    font-size: 38px;
    font-weight: 700;
    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: 'Libre Baskerville', 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;
    /* Changed from relative to absolute to fill hero container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    /* Behind content */
}

.hero-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-image-slider img.active {
    opacity: 1;
    z-index: 2;
}

/* 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: #1a2a4a;
    color: #1a2a4a;
}

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

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

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

/* Hero Slider Buttons - Navy Solid for Visibility */
.hero-content .btn {
    background-color: #1a2a4a;
    border-color: #1a2a4a;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-content .btn:hover {
    background-color: #ffffff;
    color: #1a2a4a;
    border-color: #1a2a4a;
}

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

section h2 {
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 3rem;
    letter-spacing: normal;
    line-height: 1.3;
    color: #d4af37;
}

/* About Section */
.about {
    text-align: center;
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.about p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.9;
}

.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: 'Libre Baskerville', 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;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    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: 700;
    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: 769px) {
    .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: #1a2a4a;
}

.menu-price {
    white-space: nowrap;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    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;
}

.reservation-hero {
    text-align: center;
    padding: 5rem 5%;
    background: #ffffff;
}

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

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

.reservation-subtitle {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.85;
    color: #1a2a4a;
    max-width: 500px;
    margin: 0 auto;
}

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

.form-row-inline {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}

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

.form-group-mini label {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #1a2a4a;
    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: #1a2a4a;
    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: #1a2a4a;
}

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

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

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

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


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


/* Separator Image */
.reservation-image-separator {
    width: calc(100% - 4rem);
    margin: 2rem 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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 5%;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-item a {
    color: #1a2a4a;
    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: #1a2a4a;
    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: #1a2a4a;
    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: #1a2a4a;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #1a2a4a;
    color: #1a2a4a;
    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: #1a2a4a;
}

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

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

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

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

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

/* Contact Section */
.contact {
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #1a2a4a;
}

.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: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    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: #d4af37;
    text-decoration: none;
    transition: opacity 0.3s;
}

.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: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

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

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    /* Header & Navigation */
    header {
        position: relative;
        /* Unstick header on mobile to allow scrolling if menu is tall */
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .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: #1a2a4a;
    }

    /* 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;
        left: 50%;
        top: 25px;
        transform: translateX(-50%);
        z-index: 1002;
    }

    /* Mobile Nav Overlay */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background-color: #ffffff;
        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: 60px;
        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: 0.15rem 0;
        font-size: 1rem;
    }

    /* Logo at bottom of mobile menu */
    .nav-logo-mobile {
        display: block !important;
        margin-top: 2rem;
        padding: 1.5rem 0;
        text-align: center;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-logo-mobile img {
        max-width: 120px;
        height: auto;
        opacity: 0.8;
    }


    /* 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: 50vh;
        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;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
        height: 100%;
    }

    .hero .hero-content h1 {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .hero .hero-tagline {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .hero .hero-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        max-width: 95% !important;
        text-align: center;
    }

    .hero .section-buttons {
        flex-direction: row;
        width: auto;
        gap: 0;
        justify-content: center;
    }

    .hero .btn {
        width: auto;
        text-align: center;
        padding: 0.6rem 1.5rem;
        font-size: 12px;
        min-width: 140px;
        max-width: 160px;
        margin: 0 auto;
    }

    .hero .btn:not(:first-child) {
        display: none !important;
    }

    /* All CTA buttons - compact and equal width */
    .btn,
    .btn-dark,
    .btn-find,
    .btn-submit {
        padding: 0.6rem 1.5rem;
        font-size: 12px;
        min-width: 140px;
        max-width: 160px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* 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-size: 24px;
        margin-bottom: 2rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

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

    .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: 1400px;
    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: #1a2a4a;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

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

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


/* Gallery Section */
.gallery {
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6rem 5%;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    border-color: #d4af37;
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

.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: 300px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .catering-images {
        grid-template-columns: 1fr;
        padding: 0 !important;
        gap: 0 !important;
        margin: 2rem 0 !important;
    }

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

    /* 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;
    }
}

.catering-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.catering-cta .btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 1px solid #1a2a4a;
    color: #1a2a4a;
    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: #1a2a4a;
    color: #ffffff;
    border-color: #1a2a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 42, 74, 0.2);
}

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

@media (max-width: 768px) {
    .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: 768px) {
    .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;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

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

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

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

@media (max-width: 768px) {
    .features-section {
        padding: 2rem 1rem;
    }

    .features-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }

    .feature-item {
        min-width: auto;
    }

    .feature-item svg {
        width: 22px;
        height: 22px;
    }

    .feature-item span {
        font-size: 9px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0.5rem;
    }

    .feature-item svg {
        width: 20px;
        height: 20px;
    }

    .feature-item span {
        font-size: 8px;
        letter-spacing: 0;
    }
}

.lang-switch-top {
    position: absolute;
    top: 5px;
    right: 5%;
    font-size: 13px;
    font-weight: 700;
    color: #1a2a4a;
    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: 768px) {
    .lang-switch-top {
        right: 20px;
        top: 15px;
    }
}

/* Mobile Gallery Limit */


/* Mobile Banners Fix - Compact Vertical */
@media (max-width: 768px) {
    .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: 768px) {
    .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: #1a2a4a !important;
        border: 1px solid #1a2a4a !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: 768px) {
    .reservation-image-separator {
        width: 100% !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .reservation-contact-section {
        display: none !important;
    }
}

/* Mobile Gallery Edge-to-Edge */
@media (max-width: 768px) {
    .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: auto !important;
        min-height: 300px;
        object-fit: cover;
    }
}

/* Mobile Hide Contact Title */
@media (max-width: 768px) {
    .contact h2 {
        display: none !important;
    }
}

/* Mobile Menu - Simple single column, all visible */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

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

    /* Show all content on mobile - no accordion */
    .menu-accordion-header,
    .menu-accordion-content {
        display: block !important;
    }

    /* Hide images on mobile */
    .menu-category-image,
    .menu-accordion-header img {
        display: none !important;
    }

    .menu-accordion-header h3 {
        margin-bottom: 0.5rem;
        text-align: center;
        font-size: 1.3rem;
        color: #d4af37;
        padding-bottom: 0;
        border-bottom: none;
    }
}

@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: 1000;
    background-color: #1a2a4a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.scroll-to-top span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .scroll-to-top {
        display: none !important;
    }
}

/* Mobile Scroll to Top Button */
.scroll-to-top-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #1a2a4a;
    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: 768px) {
    .scroll-to-top-mobile {
        display: flex;
    }
}