.nav-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    /* Desktop default */

    background-image: url("img/img1.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
    /* ✅ responsive height */
    background-position: center;

    z-index: 9999;
}

/* White overlay */
.nav-border::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;
    /* ✅ important */
}

@media (max-width: 768px) {
    .nav-border {
        position: absolute;
        width: 100%;
        padding-top: 30px;
        height: 22px;
        /* smaller for mobile */
        background-size: auto 100%;
    }
}

@media (max-width: 480px) {
    .nav-border {
        width: 100%;
        padding-top: 40px;

        inset: 0;

    }
}



.montserrat-uniquifier {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}


/*******************************
    NAVBAR BASE STYLE
*******************************/

/* Add space between nav-border and nav-links */
.navbar {
    margin-top: 5px;
    /* space under border */
    background: #fff !important;
    padding-top: 0px !important;
    /* extra space above menu links */
    padding-bottom: 15px !important;
}


/* LOGO */
.logo-img {
    height: 77px !important;
    /* change height here */
    width: auto !important;
    /* keep proportions */
    object-fit: contain !important;
    display: block !important;
}




.logo-tagline {
    font-size: 12px;
    color: #4CAF50;
    margin-top: -20px;

    font-weight: 600;
}


/*******************************
    NAV LINKS
*******************************/
.nav-link {
    /* Horizontal spacing for desktop links */
    margin: 1 9px;
    font-size: 18px;
    font-weight: 600;
    color: #2E7D32 !important;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
}

/* Make logo + menu perfectly aligned horizontally */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    margin-left: 85px !important;
    /* Moves logo to the right */
    margin-right: 10px !important;
    /* Keeps gap before menu */
}



.navbar-nav {
    margin-left: 30px !important;
    /* Moves the menu closer */
}

.navbar-brand {
    margin-right: 180px !important;
    /* Reduces the gap from the logo */
}




/* YELLOW UNDERLINE */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #f8b400;

    left: 0;
    bottom: -6px;
    border-radius: 5px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #f8b400 !important;
}





/*******************************
    PICKLES BUTTON
*******************************/
.pickles-btn {
    background: #2E7D32;
    color: white;
    padding: 15px 30px 15px;
    border-radius: 0px 10px 25px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.pickles-btn:hover {
    background: #256428;
    color: white !important;
}

.cart-icon {
    width: 27px;
    color: white !important;
    height: auto;
}



.nav-bottom-border {
    width: 100%;
    /* ✅ responsive */
    height: 18px;
    max-width: 1920px;
    /* ✅ limits on large screens */

    background-image: url("img/borderdown.png");
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: auto;

    background-color: #f1ebe4;

    display: block;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    /* center on large screens */
}

/* Tablets */
@media (max-width: 992px) {
    .nav-bottom-border {
        height: 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nav-bottom-border {
        height: 10px;
    }
}





/* ================================
   TABLET RESPONSIVE (≤ 991px)
================================ */
@media (max-width: 991px) {

    /* Reset forced desktop spacing */
    .navbar-brand {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .navbar-nav {
        margin-left: 0 !important;
        text-align: center;
    }

    /* Logo resize */
    .logo-img {
        height: 55px !important;
    }

    /* Center logo + toggler */
    .navbar .container {
        justify-content: space-between;
    }

    /* Nav links spacing */
    .nav-link {
        margin: 10px 0 !important;
        font-size: 16px;
    }

    /* Dropdown fixes */
    .dropdown-menu {
        text-align: center;
        margin-top: 0 !important;
    }

    .dropdown-toggle::after {
        left: auto;
        right: 10px;
    }

    /* Pickles button */
    .pickles-btn {
        width: auto;
        font-size: 16px;
        padding: 10px 18px;
    }
}


/* ================================
   MOBILE RESPONSIVE (≤ 767px)
================================ */
@media (max-width: 767px) {

    /* Navbar spacing */
    .navbar {
        padding: 10px 0 !important;
    }

    /* Logo center */
    .navbar-brand {
        margin: 0 auto !important;
    }

    .logo-img {
        height: 50px;
        margin-left: 20px;
    }


    /* Collapsed menu */
    .navbar-collapse {
        background: #fff;
        padding: 15px 0;
        border-radius: 10px;
    }

    .nav-link {
        font-size: 15px;
        padding: 8px 0;
    }

    /* Remove underline animation on mobile */
    .nav-link::after {
        display: none;
    }

    /* Dropdown menu flat */
    .dropdown-menu {
        border: none;
        box-shadow: none;
    }

    /* Dropdown arrow alignment */
    .dropdown-toggle::after {
        right: 0;
    }

    /* Pickles button full width */
    .pickles-btn {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        font-size: 15px;
    }

    /* Cart icon */
    .cart-icon {
        width: 22px;
    }
}


/* ================================
   PREVENT HORIZONTAL SCROLL
================================ */
body {
    overflow-x: hidden;
}




/*************************** wraper page**************************************/



/* ================= PAGE WRAPPER ================= */
.page-wrapper {
    display: flex;
    gap: 5px;
    padding: 60px 40px;
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: flex-start;
    margin-right: -80px;
}

/* ================= LEFT COLUMN ================= */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 600px;
    /*position: relative;
            left: 110px;*/
}

.highlight-image,
.rounded-image {
    width: 500px;
    height: 260px;
    overflow: hidden;
    border-radius: 40px;
}

.highlight-image {
    border: 8px solid #d0e8b0;
}

.rounded-image {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.container-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    position: relative;
}

.container-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.image-text {
    position: absolute;
    left: 28px;
    top: 45%;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.catering-text {
    position: relative;
    left: 0px;
    top: 0;
    font-size: 38px;
}

/* ================= RIGHT COLUMN ================= */
.right-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    align-items: flex-start;
}


/* Header */
.header {
    color: green;
    text-align: left;
    width: 100%;
    margin-top: 50px;
}

.header h2 {
    margin: 0;
    font-size: 22px;
}

.header h1 {
    margin: 0;
    font-size: 40px;
}

.header p {
    margin-top: 4px;
    color: #000;
}

/* ================= FORM ================= */
.form-container {
    width: 100%;
    padding: 0;
    height: 64px;
    max-width: 500px;
    border-radius: 14px;

}

.row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;

}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}

.full-width {
    margin-bottom: 10px;
}

.half-width {
    flex: 1;
}

.input-group {
    position: relative;
    border: 1.5px solid #7cb342;
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    background: #fff;
}

.full-width,
.row {
    display: flex;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.input-group input {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 15px;
    /* space for icon */
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #a0a0a0;
    font-weight: normal;
    cursor: text;
}

.input-group input:valid {
    color: #000;
}

/* Icon images inside input */
.icon {
    position: absolute;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ================= SELECT GROUP ================= */

.select-group {
    position: relative;
    border: 1.5px solid #7cb342;
    border-radius: 8px;
    height: 50px;
    background: #fff;
}

.select-group select {
    width: 100%;
    height: 100%;
    padding: 0 40px 0 15px;
    /* space for arrow image */
    border: none;
    outline: none;
    appearance: none;
    background: transparent;
    font-size: 16px;
    color: #a0a0a0;
    cursor: pointer;
}

.select-group select:valid {
    color: #000;
}

.select-group img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
}

/* ================= BUTTON ================= */

.button button {
    background-color: #2c6022;
    color: white;
    border: none;
    padding: 18px 40px 18px 65px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    width: 230px;
}

@media (max-width: 768px) {
    .button button {
        width: 100%;
        font-size: 18px;
        padding: 15px 20px 15px 50px;
    }
}


.button button::before {
    content: "➜";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    /* continuous animation */
    animation: arrowForward 2s ease-in-out infinite;
}

/* LEFT IMAGE ACTIVE EFFECT */
.catering-card {
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s ease;
}

.catering-card.active,
.catering-card:hover {
    opacity: 1;
}

/* RIGHT CONTENT SWITCH */
.catering-content {
    display: none;
}

.catering-content.active {
    display: block;
}


/* On hover or click, trigger the animation 
.button button:hover::before {
    animation: arrowForward 0.5s linear infinite;
}
    */

@keyframes arrowForward {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateY(-50%) translateX(10px);
        /* move forward */
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) translateX(0);
        /* reset to start */
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .page-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .left-column,
    .right-column {
        width: 100%;
        align-items: center;
    }

    .header {
        text-align: center;
    }

    .button {
        text-align: center;
    }
}

/* ------------------------------------
    NEWSLETTER
------------------------------------ */

.newsletter-wrapper {
    width: 100%;
    max-width: 1450px;
    position: relative;
    z-index: 10;
    margin-bottom: -40px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    box-sizing: border-box;

}

.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;
    margin-bottom: 0 !important;
}

.footer-section .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.footer-col {
    height: 10%;
}


/* Mobile only */

@media (max-width: 768px) {
    .footer-section .row {
        flex-wrap: wrap;
    }
}


.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: 0px;
}

.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;
}

/* ===================== MOBILE RESPONSIVE ONLY ===================== */
@media (max-width: 768px) {

    .nav-link,
    .dropdown-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* NAV LINKS – mobile tap effect */
    .nav-link:active,
    .nav-link:focus {
        color: #f8b400 !important;
    }

    .nav-link:active::after,
    .nav-link:focus::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* DROPDOWN ITEMS – mobile tap effect */
    .dropdown-item:active,
    .dropdown-item:focus {
        background: #f8b400;
        padding-left: 28px;
    }

    /* remove default outline on tap */
    .nav-link:focus,
    .dropdown-item:focus {
        outline: none;
        box-shadow: none;
    }

    /* OTHER MOBILE ADJUSTMENTS */
    .cards-wrap {
        gap: 0px !important;
    }

    .navbar {
        padding-bottom: 10px 0 !important;
    }

    .navbar-brand {
        margin: 0 auto !important;

    }

    .navbar .container {
        justify-content: space-between;
    }

    .nav-link {
        font-size: 16px;
    }


    .logo-img {
        height: 50px !important;
        margin-left: 30px;
    }



    /* ================= HERO TEXT ================= */
    .hero-header {
        padding: 40px 0;
    }

    .hero-text {
        padding-left: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-text .small-title {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
        margin-top: 0;
    }

    /* ================= HERO IMAGES (NO SIDE SCROLL) ================= */

    .hero-images {
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }

    .img-box {
        width: 30vw;
        /* fits 3 images */
        max-width: 120px;
        aspect-ratio: 2 / 3;
        height: auto;
        border-radius: 18px;
    }

    /* ================= INFO CARDS GAP ================= */
    .cards-wrap {
        gap: 120px !important;
    }

    .info-card {
        width: 100%;
        max-width: 360px;
        height: auto;
        padding: 40px 20px 30px;
        margin-top: 0;
    }

    .info-img {
        width: 90%;
        height: 120px;
        top: -60px;
    }

    .card-body {
        padding: 20px;
        margin-top: 0;
        text-align: center;
    }

    .title {
        font-size: 24px;
    }

    .info-card p {
        font-size: 15px;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* ================= NEWSLETTER ================= */
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form .form-control,
    .submit-btn {
        width: 100%;
    }

    /* ================= SOCIAL CARDS ================= */
    .social-card {
        width: 100%;
        max-width: 340px;
        height: 360px;
    }

    /* ================= FOOTER ================= */
    .footer-content {
        margin-top: 20px;
        text-align: left;
    }

    .footer-section .row {
        gap: 30px;
    }

    .social-icons {
        justify-content: left;
    }
}


/* ================= MOBILE & TABLET RESPONSIVE ONLY ================= */

/* Tablets & below */
@media (max-width: 1024px) {

    .page-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        margin-right: 0;
        /* remove negative margin on mobile */
        gap: 40px;
        align-items: center;
    }

    .left-column {
        width: 100%;
        max-width: 500px;
        align-items: center;
        gap: 20px;
    }

    .right-column {
        width: 100%;
        max-width: 500px;
        align-items: center;
    }

    /* Images scale down nicely */
    .highlight-image,
    .rounded-image {
        width: 100%;
        max-width: 500px;
        height: 240px;
    }

    .container-image img {
        border-radius: 30px;
    }

    .image-text {
        left: 20px;
    }

    .catering-text {
        font-size: 32px;
    }

    /* Header center on mobile */
    .header {
        text-align: center;
        margin-top: 20px;
    }

    .header h1 {
        font-size: 32px;
    }

    .header h2 {
        font-size: 20px;
    }

    .header p {
        font-size: 15px;
    }

    /* Form container responsive */
    .form-container {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}

/* Phones */
@media (max-width: 768px) {

    /* Stack form rows vertically */
    .row {
        flex-direction: column;
        gap: 12px;
    }

    .half-width {
        width: 100%;
    }

    .input-group,
    .select-group {
        height: 48px;
    }

    .input-group input,
    .select-group select {
        font-size: 15px;
    }

    /* Button full width */
    .button button {
        width: 100%;
        font-size: 18px;
        padding: 16px 20px 16px 55px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .header h1 {
        font-size: 26px;
    }

    .catering-text {
        font-size: 28px;
    }

    .image-text {
        font-size: 18px;
    }

    .highlight-image,
    .rounded-image {
        height: 200px;
    }
}