/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

/* LAYOUT */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.narrow {
    max-width: 800px;
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo-wrap {
    font-weight: 800;
    font-size: 90px;
}

.site-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-btn-nav {
    background: #11a63a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 700;
}

.logo-wrap img {
    height: 50px;
}

.hero-logo {
    max-width: 220px;
    margin-bottom: 15px;
}

/* HAMBURGER BUTTON */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 3px;
}

/* FIRST BANNER BLOCK (FIXED) */
.banner-section {
    position: relative;
    height: 320px;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* HERO */
.hero-section {
    padding: 60px 0;
    background: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hero-text {
    margin: 15px 0;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.btn-primary {
    background: #11a63a;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #ccc;
}

/* MENU */
.menu-section {
    padding: 60px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

/* CART */
.cart-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* FORM */
.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.submit-order-btn {
    width: 100%;
    background: #11a63a;
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 700;
}

/* SIDEBAR */
.order-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-grid,
    .order-layout,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
    }
}

/* =========================
   BANNER SECTION (HER STYLE)
========================= */

.banner-section {
    position: relative;
    height: 320px;
    background: url('../images/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
}

.banner-content {
    position: relative;
    color: #fff;
    max-width: 700px;
}

.banner-eyebrow {
    color: #7CFF8A;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-subtext {
    margin-bottom: 20px;
    font-size: 16px;
}

.banner-btn {
    margin-top: 10px;
}

/* =========================
   FEATURE BOXES (HER STYLE)
========================= */

.features-section {
    padding: 40px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    padding: 30px;
    color: #fff;
    border-radius: 12px;
    text-align: left;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.5;
}

.feature-box.green {
    background: #11a63a;
}

.feature-box.dark {
    background: #1a1a1a;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MENU CARDS (HER STYLE)
========================= */

.menu-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.menu-item h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.menu-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.menu-item select,
.menu-item input[type="number"] {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.menu-item button {
    background: #11a63a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.menu-item button:hover {
    background: #0d8f2f;
}

.menu-item {
    border-top: 4px solid #11a63a;
}

/* =========================
   MENU IMAGES
========================= */

.menu-image {
    width: 100%;
    height: 225px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE NAV FIX */

.site-nav {
    display: flex;
}

@media (max-width: 768px) {

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }

    .site-nav {
        position: absolute;
        top: 110px;
        right: 0;
        background: #fff;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #ddd;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* MOBILE */

@media (max-width: 768px) {
    .gallery-grid,
    .testimonial-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* SLIM LEFT MENU */

.menu-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
}

.menu-sidebar {
    position: sticky;
    top: 120px;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-links li {
    margin-bottom: 18px;
}

.menu-tab {
    font-weight: 600;
    color: #777;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.menu-tab:hover {
    color: #111;
}

.menu-tab.active {
    color: #111;
    position: relative;
    padding-left: 12px;
}

.menu-tab.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: #111;
    border-radius: 4px;
}

@media (max-width: 768px) {

    .menu-layout {
        grid-template-columns: 1fr;
    }

    .menu-sidebar {
        position: relative;
        top: 0;
        overflow-x: auto;
    }

    .menu-links {
        display: flex;
        gap: 15px;
    }

    .menu-links li {
        margin-bottom: 0;
    }

    .menu-tab.active::before {
        display: none;
    }
}

/* =========================
   HERO CENTER FIX (SAFE ADD)
========================= */

.hero-section {
    text-align: center;
}

/* center content inside hero */
.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* title spacing */
.hero-section h1 {
    max-width: 800px;
    margin-bottom: 20px;
}

/* buttons centered */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* horizontal bullet list */
.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* bullet styling */
.hero-points li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
}

.hero-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #11a63a;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-points {
        flex-direction: column;
        gap: 10px;
    }

}

/* =========================
   GLOBAL CENTER ALIGN FIX
========================= */

.section-heading {
    text-align: center;
}

.section-heading h2,
.section-heading h3,
.section-heading p {
    text-align: center;
}

/* =========================
   MENU GRID FIX (SHOW ALL ROWS)
========================= */

.menu-content {
    width: 100%;
}

.menu-grid {
    width: 100%;
    align-items: stretch;
}

/* make sure items don't collapse */
.menu-item {
    width: 100%;
}

/* =========================
   FORCE CLEAN 3-WIDE LAYOUT
========================= */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================
   MOBILE SAFETY (NO BREAK)
========================= */

@media (max-width: 768px) {

    .menu-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   GLOBAL CENTER ALIGN FIX
========================= */

.section-heading {
    text-align: center;
}

.section-heading h2,
.section-heading h3,
.section-heading p {
    text-align: center;
}

/* =========================
   MENU GRID FIX (SHOW ALL ROWS)
========================= */

.menu-content {
    width: 100%;
}

.menu-grid {
    width: 100%;
    align-items: stretch;
}

/* make sure items don't collapse */
.menu-item {
    width: 100%;
}

/* =========================
   FORCE CLEAN 3-WIDE LAYOUT
========================= */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================
   MOBILE SAFETY (NO BREAK)
========================= */

@media (max-width: 768px) {

    .menu-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   MOBILE CENTER ALIGN FIX
========================= */

@media (max-width: 768px) {

    .section-heading,
    .section-heading.left,
    .category-header,
    .hero-section,
    .hero-section h1,
    .hero-section h2,
    .hero-section h3,
    .hero-section p,
    .menu-section h2,
    .menu-section h3,
    .menu-section p,
    .order-section h2,
    .order-section h3,
    .order-section p,
    .gallery-section h2,
    .gallery-section h3,
    .gallery-section p,
    .testimonials-section h2,
    .testimonials-section h3,
    .testimonials-section p,
    .contact-section h2,
    .contact-section h3,
    .contact-section p {
        text-align: center;
    }

    .hero-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
    }

    .hero-points {
        align-items: center;
        justify-content: center;
    }

    .category-header {
        width: 100%;
    }

    .menu-sidebar {
        text-align: center;
    }

    .menu-links {
        justify-content: center;
    }

    .menu-links li {
        text-align: center;
    }

}