/* ============================================================
   GLOBAL STYLES
   ============================================================ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo h2 {
    margin: 0;
    color: #ffffff;
}

/* ============================================================
   NAVIGATION + HAMBURGER
   ============================================================ */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVIGATION COLOR UPDATE
   ============================================ */

/* Header background */
header {
    background: #25552a !important;
}

/* Nav links */
header nav a {
    color: #ffffff !important;
}

/* Hover state (optional but recommended) */
header nav a:hover {
    color: #e6e6e6 !important;
}

/* Hamburger icon lines */
.hamburger div {
    background: #ffffff !important;
}

/* Mobile dropdown background */
@media (max-width: 768px) {
    nav {
        background: #25552A !important;
    }
    nav a {
        color: #ffffff !important;
    }
}


/* ============================================================
   HERO SLIDER
   ============================================================ */
.slider {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    z-index: 10 !important;
    background-color: rgba(102, 102, 102, 0.70); 
    padding: 30px; 
}

.slider-text h1 {
    font-size: 48px;
    margin: 0;
}

.slider-text button {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    background: #3c8a44;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    display: flex;
    padding: 40px;
    gap: 20px;
}

.feature {
    flex: 1;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.feature img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* ============================================================
   PAGE HEADER (PARALLAX)
   ============================================================ */
.page-header {
    background: url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092') center/cover no-repeat;
    padding: 220px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    position: relative;
    color: white;
    background-attachment: fixed;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 48px;
    color: white;
}

/* ============================================================
   PAGE CONTENT WRAPPER
   ============================================================ */
.content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ============================================================
   MENU LAYOUT (DESKTOP)
   ============================================================ */
.menu-layout {
    display: flex;
    gap: 30px;
}

/* ============================================================
   MENU SIDEBAR
   ============================================================ */
.menu-sidebar {
    width: 220px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.menu-sidebar h3 {
    margin-top: 0;
    color: #2167b3;
}

.menu-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-sidebar li {
    margin-bottom: 10px;
}

.menu-sidebar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.menu-sidebar a:hover {
    color: #2167b3;
}

/* ============================================================
   MENU CONTENT
   ============================================================ */
.menu-content {
    flex: 1;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-toggle {
    width: 100%;
    background: #3c8a44;
    color: white;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    margin-top: 40px;
}

.accordion-toggle:hover {
    background: #2d6733;
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.accordion-content.open {
    padding-top: 15px;
    max-height: 5000px;
}

/* Two-column grid on desktop */
.accordion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ============================================================
   MENU ITEM CARDS
   ============================================================ */
.menu-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.menu-item-info {
    max-width: 70%;
}

.menu-item-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 14px;
    color: #666;
}

/* ============================================================
   PRICE BLOCK
   ============================================================ */
.menu-item-prices {
    display: flex;
    gap: 15px;
    align-items: center;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: #2167b3;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #3c8a44;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    /*box-shadow: 0 3px 8px rgba(0,0,0,0.25);*/
    display: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    background: #2d6733;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #222;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: white;
    text-decoration: none;
}

/* ============================================================
   JOB FORM
   ============================================================ */
.job-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.form-section h3 {
    margin-top: 0;
    color: #2167b3;
    margin-bottom: 15px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.job-form input,
.job-form select,
.job-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.job-form textarea {
    resize: vertical;
}

.submit-btn {
    text-decoration: none;
    background: #3c8a44;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #2d6733;
}

/* ============================================================
   UNIFIED MOBILE BREAKPOINT (≤768px)
   ============================================================ */
@media (max-width: 1200px) {
    /* Header */
    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        border-bottom: 1px solid #ddd;
    }

    nav.show {
        display: flex;
        animation: slideDown 0.4s ease forwards;
    }

    .hamburger {
        display: flex;
    }

    /* Menu layout becomes vertical */
    .menu-layout {
        display: block;
        width: 100%;
    }

    .logo h2 {
        font-size: 20px;
        margin: 0;
        color: #ffffff;
    }
}

@media (max-width: 768px) {

    /* Header */
    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        border-bottom: 1px solid #ddd;
    }

    nav.show {
        display: flex;
        animation: slideDown 0.4s ease forwards;
    }

    .hamburger {
        display: flex;
    }

    .logo h2 {
        font-size: 16px;
        margin: 0;
        color: #ffffff;
    }

    /* Hero */
    .slider {
        height: 300px;
    }

    .slider-text h1 {
        font-size: 28px;
    }

    /* Features */
    .features {
        flex-direction: column;
    }

    /* Parallax fallback */
    .page-header {
        background-attachment: scroll;
    }

    /* Menu layout becomes vertical */
    .menu-layout {
        display: block;
        width: 100%;
    }

    /* Sidebar becomes horizontal scroll bar */
    .menu-sidebar {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
        overflow-x: auto;
        white-space: nowrap;
    }

    .menu-sidebar ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 10px;
    }

    .menu-sidebar a {
        background: #2167b3;
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 14px;
        display: inline-block;
        white-space: nowrap;
    }

    /* Menu content full width */
    .menu-content {
        width: 100%;
        max-width: 100%;
    }

    /* Accordion grid collapses to one column */
    .accordion-content {
        grid-template-columns: 1fr;
    }

    /* Mobile menu item layout:
       Name + price on one line → description below */
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
    }

    .menu-item-info {
        width: 100%;
        max-width: 100%;
    }

    /* Top row: name + price */
    .menu-item-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Description full width */
    .menu-item-desc {
        width: 100%;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Price block */
    .menu-item-prices {
        margin: 0;
        padding: 0;
        gap: 10px;
    }

    /* Form grid collapse */
    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Stack menu items vertically */
    .menu-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 18px 20px !important;
        box-sizing: border-box !important;
    }

    /* Create top row for name + price */
    .menu-item-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        gap: 12px;
    }

    /* Ensure name and price wrap cleanly */
    .menu-item-name {
        font-size: 18px !important;
        font-weight: bold !important;
        margin: 0 !important;
        flex: 1;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .menu-item-prices {
        font-size: 16px !important;
        font-weight: bold !important;
        color: #2167b3 !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0;
    }

    /* Description below, full width */
    .menu-item-desc {
        font-size: 14px !important;
        color: #666 !important;
        margin-top: 8px !important;
        width: 100% !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Ensure all inner blocks wrap safely */
    .menu-item,
    .menu-item * {
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}

/* Three-column layout for date/time/persons */
.three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

/* Collapse to one column on mobile */
@media (max-width: 768px) {
    .three-col {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Ensure all form fields have white backgrounds */
.job-form input,
.job-form select,
.job-form textarea {
    background-color: #ffffff !important;
}

/* Add consistent spacing between all fields */
.job-form input,
.job-form select,
.job-form textarea {
    margin-bottom: 16px;
}

/* Add spacing between columns in two-col and three-col layouts */
.two-col,
.three-col {
    gap: 18px !important;
}

/* Ensure selects look consistent across browsers */
.job-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* Add vertical spacing between all form fields */
.job-form input,
.job-form select,
.job-form textarea {
    margin-bottom: 18px !important;
}

/* Add spacing between form sections */
.form-section {
    margin-bottom: 30px !important;
}

/* Ensure spacing between grouped columns */
.two-col,
.three-col {
    gap: 18px !important;
    margin-bottom: 18px !important;
}
/* Strong, consistent vertical rhythm for the reservation form */
.job-form .form-section {
    margin-bottom: 32px !important;
}

.job-form .form-section h3 {
    margin-bottom: 16px !important;
}

/* Space below each grid row (date/time/persons, name row, email/phone row) */
.job-form .two-col,
.job-form .three-col {
    display: grid;
    gap: 18px !important;
    margin-bottom: 20px !important;
}

/* Extra safety: fields themselves also get a bit of breathing room */
.job-form input,
.job-form select,
.job-form textarea {
    margin-bottom: 8px !important;
    background-color: #ffffff !important;
}
/* FORCE all form fields to behave as block-level elements */
.job-form input,
.job-form select,
.job-form textarea {
    display: block !important;
    width: 100% !important;
    background: #ffffff !important;
    margin: 0 0 18px 0 !important;   /* vertical spacing that WILL apply */
    padding: 12px !important;
    box-sizing: border-box !important;
}

/* Restore proper grid behavior */
.two-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 18px !important;
    row-gap: 18px !important;
}

.three-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    column-gap: 18px !important;
    row-gap: 18px !important;
}

/* Ensure the grid itself has spacing below it */
.two-col,
.three-col {
    margin-bottom: 20px !important;
}

/* Remove white seam between header and hero */
header {
    border-bottom: 0 !important;
    background-color: transparent;
}

.page-header {
    border-top: 0 !important;
    background-color: transparent;
}

.specials-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Two-column rows */
.special-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.special-row.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.special-row.reverse > * {
    direction: ltr;
}

/* Images */
.special-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.special-image {
    position: relative;
}

.special-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.special-image-overlay a {
    color: #fff;
    font-size: 1.1rem;
}

/* Text */
.special-info h2.special-title {
    font-family: 'Limelight';
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #25552A;
}

.special-info p {
    margin: 12px 0;
}

/* Panels */
.special-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.special-panel img {
    width: 100%;
    border-radius: 8px;
}

.special-panel h3 {
    margin-top: 12px;
    color: #25552A;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .special-row,
    .special-row.reverse {
        grid-template-columns: 1fr;
    }

    .special-panels {
        grid-template-columns: 1fr;
    }
}

.footer-map-hours {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.footer-map {
    flex: 2;
}

.footer-hours {
    flex: 1;
    color: white;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-hours h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #d2691e; /* brand orange */
    font-size: 1.3rem;
}

.footer-hours p {
    margin: 0 0 10px 0;
}

@media (max-width: 760px) {
    .footer-map-hours {
        flex-direction: column;
        text-align: center;
    }

    .footer-hours {
        margin-top: 10px;
    }
    .slider-text {
    margin-top: 3em;
    }

    /* Force all grouped rows into a single column */
    .job-form .two-col,
    .job-form .three-col {
        grid-template-columns: 1fr !important;
        column-gap: 0 !important;
        row-gap: 18px !important;
        margin-bottom: 18px !important;
    }

    /* Ensure fields stack cleanly */
    .job-form input,
    .job-form select,
    .job-form textarea {
        width: 100% !important;
        display: block !important;
        margin-bottom: 18px !important;
    }
}

/* ============================================================
   MOBILE HERO SLIDER IMPROVEMENTS
   ============================================================ */

/* Improved mobile hero */
@media (max-width: 768px) {
    /* Reduce hero height on mobile */
    .slider {
        height: 500px;
    }
    
    /* Better overlay sizing and positioning */
    .slider-text {
        /*width: 90%;*/
        max-width: 400px;
        padding: 20px;
        margin-top: 0;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Smaller logo on mobile */
    .slider-text img {
        width: 250px !important;
        max-width: 100%;
        height: auto;
        margin-bottom: 15px !important;
    }
    
    /* Smaller heading */
    .slider-text h1 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    /* Stack buttons and make them full-width */
    .slider-text .submit-btn {
        display: block !important;
        width: 100% !important;
        margin: 10px 0 !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        box-sizing: border-box;
    }
    
    /* Remove extra spacing */
    .slider-text br {
        display: none;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    /* Even smaller hero on tiny phones */
    .slider {
        height: 450px;
    }
    
    /* Tighter overlay */
    .slider-text {
        padding: 25px;
        width: 65%;
    }
    
    /* Even smaller logo */
    .slider-text img {
        width: 200px !important;
        margin-bottom: 12px !important;
    }
    
    /* Smaller text */
    .slider-text h1 {
        font-size: 20px !important;
        margin-bottom: 12px;
    }
    
    /* Compact buttons */
    .slider-text .submit-btn {
        padding: 10px 15px !important;
        font-size: 14px !important;
        margin: 8px 0 !important;
    }
}
