/********** HERO WRAPPER *****************/

/* =============================== HERO SECTION =============================== */

/* HERO HEADER */
.hero-header {
    padding: 20px 0;
    background: url("img/banner_bg.png") no-repeat center center / cover;
    position: relative;

}

/* TEXT AREA */
.hero-text {
    margin-bottom: 30px;
    padding-left: 30px;
    margin-bottom: -50px;

}

.hero-text .small-title {
    color: #2e8c43;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: 70px;
}

.hero-text p {
    font-size: 22px;
    margin-top: -15px;
    font-weight: 500;
    margin-left: 70px;
}

/* IMAGE ROW (RIGHT SIDE) */
.hero-images {
    display: flex;

    justify-content: flex-start;
    align-items: center;
    margin-left: -5px;
    /* moves it right */
    margin-bottom: 80px;

    /* Removed overlap - moved image DOWN */

}

/* IMAGE BOX */
.full-banner {
    width: 600px;
    height: 180px;
    /* correct height */
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 30px;
    /* smooth corners */
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-image-wrapper {
        justify-content: center;
        padding-left: 0;
        padding-top: 20px;
    }

    .full-banner {
        width: 90%;
        height: auto;
    }
}


/******* book now**********/
/* BODY STYLING */
body {
    background: #F8F8F8;
    margin: 0;
    padding: 0;
}

/* MEAL SECTION */
.meal-section {
    padding: 20px 0;
    box-sizing: border-box;
    position: relative;
}

/* CARD STYLING */
.meal-card {
    position: relative;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
    overflow: visible;
    transition: 0.3s;
    text-align: center;
    padding-bottom: 50px;
    margin: 40px auto;
    /* extra space for floating button */
    width: 100%;
    max-width: 350px;
    /* fixed width for uniform cards */
}

.meal-card:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.30);
}

/* CARD IMAGE */
.meal-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* CARD TITLE */
.meal-title {
    font-size: 28px;
    font-weight: 600;
    margin-top: 15px;
    color: #079207;
    display: inline-block;
    padding: 0 10px 8px 10px;
    border-bottom: 4px solid #4CAF50;
    background-color: #fff;
    z-index: 2;
}

/* MEAL DETAILS */
.meal-details {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    width: 80%;
}

.meal-details li {
    padding: 10px 0;
    font-size: 17px;
    color: #444;
    border-bottom: 1px dashed #4CAF50;
}

.meal-details li:last-child {
    border-bottom: none;
}

/* FLOATING BOOK BUTTON */
.book-btn {
    position: absolute;
    left: 50%;
    bottom: -25px;
    /* half out of card */
    transform: translateX(-50%);
    background-color: #058109;
    color: #fff;
    padding: 12px 0;
    width: 60%;
    /* button width relative to card */
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.book-btn:hover {
    background-color: #2f7a2e;
    transform: translateX(-50%) scale(1.05);
}

/* RESPONSIVE ADJUSTMENTS */
/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #058109;
}

.swiper-pagination-bullet-active {
    background: #058109;
}

/* Slide centering */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    /* Space for the floating button and pagination */
}







/* ---------------- 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;
    /* Height of the separator pattern */
    /* This pattern is complex to replicate with pure CSS, but you can approximate the look */
    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 {
        /* existing styles remain */
    }

    /* Mobile Responsive Adjustments for Meals Page */
    @media (max-width: 576px) {

        /* Hero Section */
        .hero-header {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-text {
            margin-left: 0;
            padding: 0 15px;
        }

        .hero-images {
            justify-content: center;
            margin-left: 0;
        }

        .hero-images .img-box img {
            width: 100%;
            height: auto;
        }

        /* Meal Cards */
        .meal-card {
            max-width: 100%;
            margin: 20px auto;
        }

        .meal-section .swiper-slide {
            width: auto;
        }
    }

}


/* ------------------------------------
    NEWSLETTER
------------------------------------ */

.newsletter-wrapper {
    width: 100%;
    position: relative;
    z-index: 10;
    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);
}

@media (max-width: 768px) {
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }
}

.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;
    font-family: Arial, sans-serif;
    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;
}