
/*************** menu section  ***********************/
.food-menu-section {
    background: #fff;
    padding: 60px 0;
}

/* HEADER */
.menu-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-header h2 {
    font-size: 50px;
    font-weight: 600;
    color: #2e7d32;
    margin-left: 80px;
}

.month-selector-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 80px;
}

.selector-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selector-item label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    min-width: 120px;
}

.month-dropdown,
.date-input {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-weight: 500;
    background-color: #f9f9f9;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.month-dropdown:focus,
.date-input:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.month-dropdown:hover,
.date-input:hover {
    background-color: #fff;
}

/* Day Tabs Date Label */
.day-date-label {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

.day-tabs button.active .day-date-label {
    color: #fff;
}

.menu-header p {
    font-size: 18px;
    color: #777;
    max-width: 600px;
    margin-top: 10px;
}

/* WEEK BUTTONS */
.week-tabs {
    display: flex;
    gap: 10px;
    margin-right: 70px;
}

.week-btn {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    border: none;
    background: #e9e6dc;
    font-size: 20px;
    font-weight: 700;
    color: light rgba(0, 0, 0, 0.268);
}


/* HOVER EFFECT */
.week-btn:hover {
    background: #4c8c2b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 140, 43, 0.35);
}

.week-btn.active {
    background: #4c8c2b;
    color: #fff;
}

.week-btn.add {
    font-size: 28px;
}


/************** MENU CARD ****************/

.menu-section {
    padding: 40px 0;
    background: #ffffff;
    width: 100%;
    margin-left: -20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}


/* CARD */
.menu-card {
    background: #f6f6f6;
    border-radius: 16px;
    padding: 16px;
}

/* TITLE */
.menu-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #000;
}

/* IMAGE */
.menu-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}

/* BUTTONS */
.menu-card button {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #3c8d2f;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* ACTIVE */
.menu-card button.active {
    background: #3c8d2f;
    color: #ffffff;
    border-color: #3c8d2f;
}

/* HOVER */
.menu-card button:hover {
    background: #3c8d2f;
    color: #ffffff;
}

/* REMOVE LAST GAP */
.menu-card button:last-child {
    margin-bottom: 0;
}


/*************** week bar **********************/

.week-days {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.week-days span {
    font-size: 50px;
    font-weight: 600;
    color: #2f5d1f;

    padding: 8px 18px;
    border-radius: 25px;

}



.day-week-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: 40px;
}

.day-tabs {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    /* Hide scrollbar but keep scrollable for JS */
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.day-tabs button {
    padding: 8px 14px;
    border-radius: 20px;

    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    /* 🔥 smooth hover */
}

/* Hover effect */
.day-tabs button:hover {
    background: #e8f3e5;
    color: #2f5d1f;
    transform: translateY(-2px);
    /* slight lift */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Active state */
.day-tabs button.active {
    background: green;
    color: #fff;
    border-color: green;

}

/* Active + hover (keeps active color) */
.day-tabs button.active:hover {
    background: #1e7a1e;
    transform: none;
}

/* Horizontal line */
.line {
    max-width: 40%;
    height: 1px;
    background-color: #2f5d1f;
    flex-grow: 1;
    /* take up remaining space */
    margin-top: 20px;
    margin-left: 20px;
}

.pay-now-btn {
    padding: 10px 40px;
    background-color: #2f5d1f;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    /* 🔥 removes underline */
    display: inline-block;
    margin-left: 20px;
}

.pay-now-btn:hover {
    background-color: #244a18;
}


/* ARROWS */
.nav-arrows {
    display: flex;
    gap: 385px;
    margin-left: 100px;
    margin-top: 10px;
}


.nav-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: #e8e4d8;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-arrows button:hover {
    background: #d6d2c5;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {

    /* WEEK TITLE */
    .week-days {
        margin-left: 0;
        justify-content: center;
        text-align: center;
    }

    .week-days span {
        font-size: 28px;
        padding: 6px 14px;
    }

    /* DAY TABS */
    .day-week-bar {
        margin-left: 0;
    }

    .day-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        overflow-x: auto;
        /* allow touch swipe on mobile */
        -webkit-overflow-scrolling: touch;
    }

    .day-tabs button {
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 16px;
    }

    /* LINE */
    .line {
        max-width: 90%;
        margin: 12px auto;
    }

    /* PAY NOW BUTTON */
    .pay-now-btn {
        width: 100%;
        margin: 10px 0 0 0;
        text-align: center;
        font-size: 16px;
        padding: 10px;
    }

    /* ARROWS */
    .nav-arrows {
        gap: 20px;
        margin-left: 0;
        justify-content: space-between;
        padding: 0 20px;
    }

    .nav-arrows button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}




/* ---------------- Pickles Banner ---------------- */

.pickles-banner {
    position: relative;
    background-color: #ffc90e;
    /* Bright Yellow Background */
    height: 220px;
    overflow: hidden;
    /* Important for hiding parts of the background image */
    margin-top: 20px;
    /* Example margin */
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
}

/* Background Image Integration */
.pickles-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('img/Bottom-Ad.png');
    background-size: cover;
    /* Cover the whole area */
    background-position: center right;
    /* Focus on the pickle jars */
    background-repeat: no-repeat;
    z-index: 0;
    /* Keep it behind the text */
}

/* Inner container for positioning text and button */
.banner-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    /* Vertically center the content */
    z-index: 1;
}

/* Content wrapper (Text and button) */
.banner-content {
    /* Align content to the left side */
    text-align: left;
    width: 50%;
    padding-left: 30px;
}

/* Heading Styling */
.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(0, 0%, 0%);
    /* White text color */
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-shop-now {
    background-color: #333;
    /* Dark button background */
    color: yellow;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    /* Highly rounded pill shape */

    transition: background-color 0.3s;
}

.btn-shop-now:hover {
    background-color: #444;
}

/* --- Dotted Separator Styling --- */
.banner-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    
    background-image: repeating-linear-gradient(45deg,
            #ffffff 0,
            #ffffff 1px,
            transparent 1px,
            transparent 10px);
    background-size: 10px 15px;

}

/* Media Query for smaller screens (optional) */
@media (max-width: 768px) {
    .pickles-banner {
        height: 220px;
        /* Standard banner height */
        padding: 0;
        text-align: left;
    }

    .pickles-banner::before {
        background-position: right center;
        /* Image on right */
        background-size: 50% auto;
        /* Image takes half width */
        height: 100%;
        width: 100%;
        top: 0;
        bottom: 0;
    }

    .banner-inner {
        align-items: center;
        justify-content: flex-start;
    }

    .banner-content {
        width: 55%;
        /* Text takes slightly more than half on left */
        text-align: left;
        padding-left: 20px;
        margin-top: 0;
    }

    .banner-title {
        font-size: 1.4rem;
        /* Adjusted for smaller space */
        margin-bottom: 15px;
    }

    .btn-shop-now {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* ------------------------------------
    NEWSLETTER
------------------------------------ */
.newsletter-wrapper {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 60px;
    margin-bottom: -40px;
}

.newsletter-box {
    background: #f5eeee;
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.10);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
}

.newsletter-form .form-control {
    border-radius: 30px;
    padding: 15px 20px;
}

.submit-btn {
    background: #2e5f25;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
}

/***************** footer  ***********************************/
.footer-section {
    background-color: #1d5e2e;
    color: #fff;
    padding: 60px 0;
   
    position: relative;
}

.pattern-bg {
    background: url("img/pattern.png");
    /* add your dotted leaf pattern */
    height: 120px;
    background-size: 100%;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-content {
    margin-top: 120px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-col h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 3px;
    align-items: center;
}

.social-icons img {
    width: 42px;
    height: 42px;

    object-fit: cover;
    /* keeps icons sharp */
    transition: 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: translateY(-4px);
    filter: brightness(0.85);
}



.copyright {
    font-size: 13px;
    margin-top: 15px;
}

hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/**** footer close ****/
/****footer border***/

.footer-bottom-border {
    width: 100%;
    height: 40px;
    /* height of visible green line */

    background-image: url("img/footerdown.png");
    background-repeat: repeat-x;

    background-position: bottom;
    /* 🔥 IMPORTANT */
    background-size: auto;
    /* 🔥 IMPORTANT */

    background-color: #f1ebe4;
}




/*******************************
    STRICT MOBILE OVERRIDES (991px and below)
*******************************/
@media (max-width: 991px) {

    /* --- Navigation & Borders --- */
    .nav-border {
        position: absolute;
        width: 100%;
        padding-top: 30px;
        height: 22px;
        background-size: auto 100%;
    }

    .navbar {
        padding: 15px 0 !important;
        margin-top: 0 !important;
    }

    .navbar-brand {
        margin-left: 15px !important;
        margin-right: auto !important;
    }

    .logo-img {
        max-height: 55px !important;
        width: auto !important;
        margin-left: 0 !important;
    }

    .logo-tagline {
        font-size: 10px !important;
        margin-top: -5px !important;
    }

    .nav-second-border {
        position: relative !important;
        margin-top: 0 !important;
        margin-bottom: 2px !important;
        height: auto !important;
        width: 100% !important;
        z-index: 10 !important;
    }

    .nav-second-border img {
        width: 100% !important;
        display: block !important;
        height: auto !important;
    }

    .food-menu-section {
        padding-top: 2px !important;
    }

    /* --- Menu Header --- */
    .menu-header {
        flex-direction: column !important;
        text-align: center !important;
        padding-top: 2px !important;
    }

    .menu-header h2 {
        font-size: 34px !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .menu-header p {
        font-size: 16px !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        max-width: 100% !important;
    }

    .week-tabs {
        margin-right: 0 !important;
        margin-top: 20px !important;
        justify-content: center !important;
    }

    .week-btn {
        width: 70px !important;
        height: 70px !important;
        font-size: 16px !important;
    }

    /* --- Grid & Cards --- */
    .menu-section {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 20px 0 !important;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 15px !important;
        gap: 15px !important;
    }

    .menu-card {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    /* --- Day/Week Bar --- */
    .day-week-bar {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .day-tabs {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }

    .day-tabs button {
        padding: 6px 12px !important;
        font-size: 13px !important;
    }

    .week-line {
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .week-line span {
        font-size: 18px !important;
    }

    .nav-arrows {
        justify-content: center !important;
    }

    /* --- Banners & Newsletter --- */
    .pickles-banner {
        max-width: 95% !important;
        width: 95% !important;
        height: auto !important;
        padding: 40px 0 !important;
    }

    .banner-inner {
        padding: 20px !important;
    }

    .banner-content {
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .banner-title {
        font-size: 1.6rem !important;
    }

    .newsletter-box {
        width: 95% !important;
        flex-direction: column !important;
        padding: 25px !important;
        gap: 15px !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        width: 100% !important;
    }

    .submit-btn {
        width: 100% !important;
    }

    /* --- Footer --- */
    .footer-content {
        margin-top: 40px !important;
        text-align: center !important;
    }

    .footer-col {
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .social-icons {
        justify-content: center !important;
    }

    .footer-bottom-border {
        height: 18px !important;
    }
}

/* --- Mobile Breakpoints --- */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr !important;
    }

    .menu-card {
        max-width: 300px !important;
    }

    .nav-border {
        padding-top: 40px;
        height: 18px;
    }
}

/* Tablet / Large Mobile Breakpoint */


/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr !important;
    }

    .menu-card {
        max-width: 320px !important;
    }
}