
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('/images/quench-hunger-food-app.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

    .breadcrumb-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.breadcrumb-nav {
    font-size: 0.95rem;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

/* Breadcrum Responsive Styles */
@media (min-width: 576px) {
    .breadcrumb-section {
        height: 150px;
    }

    .breadcrumb-content h1 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .breadcrumb-section {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 3.5rem;
    }
}

/* Section Styles */
.qh-food-app {
    padding: 60px 20px;
    background-color: #f4f9fc; /* Light background to match HIMS */
    font-family: 'Segoe UI', sans-serif;
    color: #000;
}

    .qh-food-app .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Headings */
    .qh-food-app h2 {
        font-size: 2.5rem;
        text-align: center;
        color: #007f91;
        margin-bottom: 30px;
    }

    .qh-food-app h3 {
        font-size: 1.6rem;
        color: #025e68;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    /* Paragraph & List */
    .qh-food-app p {
        font-size: 1rem;
        line-height: 1.8;
        color: #000;
        margin-bottom: 20px;
    }

    .qh-food-app ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 30px;
        color: #000;
    }

        .qh-food-app ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

/* Gallery */
.qh-gallery {
    margin-top: 50px;
}

    .qh-gallery h2 {
        font-size: 2.8rem;
        text-align: center;
        color: #007f91;
        margin-bottom: 50px;
        margin-top:90px;
    }

.qh-image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

    .qh-image-grid img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 127, 145, 0.2);
        transition: transform 0.3s ease;
    }

        .qh-image-grid img:hover {
            transform: scale(1.05);
        }

/* Responsive */
@media screen and (max-width: 992px) {
    .qh-food-app h2,
    .qh-gallery h2 {
        font-size: 2rem;
    }

    .qh-image-grid {
        justify-content: space-around;
    }
}

@media screen and (max-width: 600px) {
    .qh-food-app {
        padding: 30px 10px;
    }

        .qh-food-app h2,
        .qh-gallery h2 {
            font-size: 1.6rem;
        }

        .qh-food-app h3 {
            font-size: 1.3rem;
        }

    .qh-image-grid {
        flex-direction: column;
        align-items: center;
    }

        .qh-image-grid img {
            max-width: 90%;
        }
}

.qh-cta-button {
    display: inline-block;
    background-color: #007f91;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 127, 145, 0.3);
    margin-top: 20px;
}

    .qh-cta-button:hover {
        background-color: #025e68;
        box-shadow: 0 6px 14px rgba(0, 127, 145, 0.4);
    }

    .qh-cta-button:active {
        background-color: #004c55;
        box-shadow: 0 2px 6px rgba(0, 127, 145, 0.3);
    }
/* Container */
.qhunger-section {
    background-color: #f8fbfb;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

    .qhunger-section .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Text Content */
    .qhunger-section .text-content h1 {
        font-size: 2.5rem;
        color: #007f91;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .qhunger-section .text-content p {
        font-size: 1.1rem;
        color: #333;
        max-width: 750px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

/* CTA Button (inherits existing style if used) */
.cta-button {
    display: inline-block;
    background-color: #007f91;
    color: #fff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 127, 145, 0.3);
}

    .cta-button:hover {
        background-color: #025e68;
        box-shadow: 0 6px 14px rgba(0, 127, 145, 0.4);
    }

    .cta-button:active {
        background-color: #004c55;
        box-shadow: 0 2px 6px rgba(0, 127, 145, 0.3);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .qhunger-section .text-content h1 {
        font-size: 2rem;
    }

    .qhunger-section .text-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
