/* =====================================
   ZIJAI FOOD DELIVERY
   MAIN STYLESHEET
===================================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #f8f9f7;

    color: #222;

}


/* =====================================
   COLORS
===================================== */

:root {

    --zijai-green: #1b5e20;

    --zijai-dark-green: #0d3b12;

    --zijai-gold: #ffc107;

    --zijai-orange: #ff7a00;

    --light-bg: #f8f9f7;

}


/* =====================================
   NAVBAR
===================================== */

.zijai-navbar {

    background: rgba(0, 0, 0, 0.88);

    padding: 14px 0;

    transition: 0.3s;

}


.zijai-logo {

    font-size: 32px;

    font-weight: 800;

    letter-spacing: 3px;

    color: var(--zijai-gold) !important;

}


.navbar-nav .nav-link {

    color: white !important;

    margin-left: 15px;

    font-weight: 500;

}


.navbar-nav .nav-link:hover {

    color: var(--zijai-gold) !important;

}


/* CART */

.cart-button {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 18px;

    border-radius: 30px;

    background: var(--zijai-gold);

    color: #111;

    text-decoration: none;

    font-weight: 700;

}


.cart-button:hover {

    background: white;

    color: #111;

}


.cart-badge {

    background: #dc3545;

    color: white;

    font-size: 11px;

    min-width: 20px;

    height: 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =====================================
   HERO
===================================== */

.hero-section {

    min-height: 100vh;

    background:

        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=2000&q=85")

        center center / cover;

    position: relative;

    display: flex;

    align-items: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.15)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    color: white;

    padding-top: 80px;

}


.hero-small-title {

    color: var(--zijai-gold);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 4px;

}


.hero-content h1 {

    font-size: clamp(45px, 6vw, 75px);

    font-weight: 800;

    line-height: 1.05;

    margin-top: 15px;

}


.hero-content h1 span {

    color: var(--zijai-gold);

}


.hero-content p {

    font-size: 20px;

    max-width: 600px;

    margin-top: 25px;

    color: #eee;

    line-height: 1.6;

}


/* =====================================
   HERO BUTTONS
===================================== */

.hero-buttons {

    margin-top: 35px;

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.btn-order {

    background: var(--zijai-gold);

    color: #111;

    padding: 15px 28px;

    border-radius: 35px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s;

}


.btn-order:hover {

    background: white;

    color: #111;

    transform: translateY(-3px);

}


.btn-menu {

    border: 2px solid white;

    color: white;

    padding: 13px 28px;

    border-radius: 35px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

}


.btn-menu:hover {

    background: white;

    color: #111;

}


/* =====================================
   SECTION HEADINGS
===================================== */

.section-heading {

    text-align: center;

    margin-bottom: 45px;

}


.section-heading span {

    color: var(--zijai-green);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;

}


.section-heading h2 {

    font-size: 38px;

    font-weight: 800;

    margin-top: 8px;

}


.section-heading p {

    color: #777;

    max-width: 600px;

    margin: 10px auto;

}


/* =====================================
   CATEGORIES
===================================== */

.categories-section {

    padding: 90px 0;

    background: white;

}


.category-card {

    display: block;

    text-align: center;

    text-decoration: none;

    color: #222;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 18px;

    padding: 25px 10px;

    height: 100%;

    transition: 0.3s;

}


.category-card:hover {

    transform: translateY(-8px);

    border-color: var(--zijai-gold);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.08);

}


.category-icon {

    font-size: 45px;

    margin-bottom: 12px;

}


.category-card h4 {

    font-size: 16px;

    font-weight: 700;

    margin: 0;

}


/* =====================================
   WHY ZIJAI
===================================== */

.why-section {

    padding: 90px 0;

    background: var(--light-bg);

}


.why-card {

    background: white;

    text-align: center;

    padding: 40px 25px;

    border-radius: 18px;

    height: 100%;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

}


.why-card i {

    font-size: 45px;

    color: var(--zijai-green);

}


.why-card h3 {

    margin-top: 20px;

    font-size: 22px;

    font-weight: 700;

}


.why-card p {

    color: #777;

    line-height: 1.6;

    margin-top: 12px;

}


/* =====================================
   FOOTER
===================================== */

.zijai-footer {

    background: #101410;

    color: white;

    padding: 70px 0 25px;

}


.zijai-footer h2 {

    color: var(--zijai-gold);

    letter-spacing: 3px;

    font-weight: 800;

}


.zijai-footer h5 {

    margin-bottom: 20px;

}


.zijai-footer p {

    color: #aaa;

    line-height: 1.7;

}


.zijai-footer a {

    display: block;

    color: #aaa;

    text-decoration: none;

    margin-bottom: 10px;

}


.zijai-footer a:hover {

    color: var(--zijai-gold);

}


.footer-order {

    color: var(--zijai-gold) !important;

    font-weight: 700;

}


.footer-bottom {

    text-align: center;

    color: #777;

    padding-top: 10px;

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    .hero-content {

        padding-top: 100px;

    }


    .hero-content h1 {

        font-size: 45px;

    }


    .hero-content p {

        font-size: 17px;

    }


    .section-heading h2 {

        font-size: 30px;

    }

}