*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
    width:100%;
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

a{
    text-decoration:none;
    color:white;
}

img{
    max-width:100%;
}

main{
    flex:1;
}

section{
    width:100%;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER / NAV
=========================== */

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:#111;
    border-bottom:1px solid #222;
    z-index:1000;
    transition:padding .3s ease, box-shadow .3s ease, background .3s ease;
}

.header.scrolled{
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    background:rgba(17,17,17,.96);
    backdrop-filter:blur(8px);
}

.header.scrolled .nav{
    padding:10px 20px;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    position:relative;
    transition:padding .3s ease;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#ff6b00;
}

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:#ff6b00;
}

.btn{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    color:#111;
}

.btn-outline{
    border:2px solid #ff4d00;
    padding:12px 24px;
    border-radius:50px;
    color:#fff;
    transition:.3s;
}

.btn-outline:hover{
    background:#ff4d00;
}

.menu-toggle{
    display:none;
    font-size:34px;
    color:#fff;
    cursor:pointer;
}

.mobile-btn{
    display:none;
}

/* ===========================
   HERO
=========================== */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:auto;
    padding:60px 8% 80px;
    overflow:hidden;
    position:relative;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    margin:0;
    padding:0;
}

.hero-text h1{
    font-size:44px;
    line-height:1.2;
}

.glow-heading{
    background:linear-gradient(90deg,#ffffff,#ff9800,#ff4d00,#ffffff);
    background-size:300% auto;
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
    animation:heading-shine 5s linear infinite;
    text-shadow:0 0 30px rgba(255,107,0,.25);
    display:inline-block;
}

@keyframes heading-shine{
    to{
        background-position:-300% 0;
    }
}

.hero-text p{
    font-size:15px;
    line-height:1.6;
    max-width:320px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:25px;
}

.hero-image{
    flex:1;
    min-width:0;
    text-align:center;
    overflow:hidden;
}

.burger-stack{
    position:relative;
    width:min(500px, 90vw);
    max-width:100%;
    aspect-ratio:1/1;
    margin:auto;
    transition:transform .15s ease-out;
    transform-style:preserve-3d;
    perspective:900px;
}

.burger-layer{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .08s linear, opacity .08s linear;
    will-change:transform, opacity;
    filter:drop-shadow(0 15px 25px rgba(0,0,0,.45));
}

/* top bun + bacon */
.layer-top{
    clip-path:inset(0 0 66% 0);
}

/* patty + cheese */
.layer-mid{
    clip-path:inset(30% 0 30% 0);
}

/* bottom bun + veggies */
.layer-bottom{
    clip-path:inset(66% 0 0 0);
}

/* ===========================
   CATEGORIES
=========================== */

.categories{
    padding:80px 8%;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#fff;
    margin-bottom:50px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    background:#1b1b1b;
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:transform .35s ease, box-shadow .35s ease;
    will-change:transform;
}

.category-card:hover{
    box-shadow:0 15px 30px rgba(255,102,0,.3);
}

.category-card img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:20px;
}

.category-card h3{
    color:#fff;
    font-size:24px;
}

/* ===========================
   MENU SECTION
=========================== */

.menu-section{
    padding:80px 8%;
    background:#111;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.menu-card{
    background:#1b1b1b;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    padding:20px;
    transition:transform .35s ease, box-shadow .35s ease;
    border:1px solid rgba(255,255,255,0.08);
    will-change:transform;
}

.menu-card:hover{
    box-shadow:0 15px 35px rgba(255,140,0,0.3);
}

.menu-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:15px;
}

.menu-card h3{
    color:#fff;
    margin:18px 0 10px;
    font-size:1.4rem;
}

.menu-card p{
    color:#ff9800;
    font-size:1.2rem;
    font-weight:bold;
    margin-bottom:15px;
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose{
    padding:100px 0;
    background:#fff;
}

.why-choose .section-title{
    margin-bottom:60px;
}

.why-choose .section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.why-choose .section-title p{
    color:#777;
    font-size:17px;
    max-width:650px;
    margin:0 auto;
    line-height:1.7;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:transform .2s ease, box-shadow .4s ease;
    cursor:pointer;
    will-change:transform;
}

.why-card:hover{
    box-shadow:0 20px 45px rgba(255,107,0,.25);
}

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#ff6b00;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:transform .4s ease, background .4s ease;
}

.why-card:hover .why-icon{
    transform:rotate(10deg) scale(1.15);
    background:#ff8c1a;
}

.why-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* ===========================
   ABOUT SECTION (home page)
=========================== */

.about{
    padding:100px 0;
    background:#111;
}

.about-content{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    grid-template-areas:"gallery text";
    gap:60px;
    align-items:center;
}

.about-gallery{
    grid-area:gallery;
    display:flex;
    gap:15px;
    height:520px;
}

.about-gallery .panel{
    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    cursor:pointer;
    transition:0.5s ease;
}

.about-gallery .panel:hover{
    flex:5;
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(255,107,0,.35);
}

.about-gallery .panel::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.2)
    );
}

.panel-content{
    position:absolute;
    bottom:25px;
    left:20px;
    right:20px;
    z-index:2;
    color:#fff;
    opacity:0;
    transform:translateY(20px);
    transition:.4s;
}

.about-gallery .panel:hover .panel-content{
    opacity:1;
    transform:translateY(0);
}

.panel-content h3{
    font-size:28px;
    margin-bottom:8px;
}

.panel-content p{
    color:#ddd;
}

.about-text{
    grid-area:text;
}

.section-tag{
    display:inline-block;
    color:#ff6b00;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
}

.about-text h2{
    color:#fff;
    font-size:46px;
    line-height:1.2;
    margin-bottom:20px;
}

.about-text p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.about-features div{
    background:#1d1d1d;
    color:#fff;
    padding:16px;
    border-radius:12px;
    transition:.3s;
}

.about-features div:hover{
    background:#ff6b00;
    transform:translateX(8px);
}

.about .btn{
    margin-top:10px;
}

.about-slider{
    display:none;
}

/* ===========================
   ORDER FORM
=========================== */

.order{
    padding:120px 0;
    background:#111;
}

.order form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.order input,
.order select,
.order textarea{
    padding:15px;
    border:none;
    border-radius:12px;
    background:#1f1f1f;
    color:#fff;
    font-size:16px;
}

.order textarea{
    height:120px;
    resize:none;
}

.order button{
    cursor:pointer;
}

/* ===========================
   GALLERY PAGE
=========================== */

.page-hero{
    background:#111;
    color:#fff;
    text-align:center;
    padding:120px 20px 70px;
}

.page-hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.page-hero p{
    color:#ccc;
}

.gallery-section{
    padding:80px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-section{
    padding:80px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h2,
.contact-form h2{
    margin-bottom:20px;
}

.info-box{
    display:flex;
    gap:15px;
    margin:25px 0;
    align-items:flex-start;
}

.info-box i{
    font-size:24px;
    color:#ff9800;
    margin-top:5px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    resize:none;
}

.map-section{
    padding:80px 0;
}

.map-box{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* ===========================
   MENU PAGE (filters)
=========================== */

.menu-filter{
    padding:40px 0;
    text-align:center;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.filter-buttons button{
    padding:12px 25px;
    border:none;
    border-radius:30px;
    background:#222;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    font-size:16px;
}

.filter-buttons button:hover,
.filter-buttons .active{
    background:#ff9800;
}

.menu-info{
    padding:20px;
}

.menu-info p{
    color:#666;
    margin:10px 0;
}

.rating{
    color:#ff9800;
    margin:10px 0;
    font-size:18px;
}

.price-order{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

.price{
    font-size:22px;
    font-weight:700;
    color:#ff9800;
}

/* ===========================
   ABOUT PAGE HERO
=========================== */

.about-hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px 20px;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("images/about-bg.jpg") center/cover no-repeat;
}

.about-hero .about-content{
    max-width:700px;
    display:block;
}

.about-hero .about-content h1{
    color:#ff9800;
    font-size:52px;
    margin-bottom:20px;
}

.about-hero .about-content p{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

/* ===========================
   ABOUT PAGE CARDS
=========================== */

.about-section{
    background:#111;
    padding:80px 10%;
}

.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.about-card{
    background:#1c1c1c;
    border-radius:20px;
    padding:35px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(255,152,0,.15);
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h2{
    color:#ff9800;
    margin-bottom:20px;
    font-size:30px;
}

.about-card p{
    color:#ddd;
    line-height:1.8;
}

.feature{
    background:#262626;
    padding:18px;
    border-radius:12px;
    margin-top:18px;
}

.feature strong{
    color:#fff;
    display:block;
    margin-bottom:6px;
}

.feature p{
    color:#bbb;
    margin:0;
}

/* ===========================
   MISSION
=========================== */

.mission-section{
    background:#181818;
    padding:80px 10%;
    text-align:center;
}

.mission-container{
    max-width:900px;
    margin:auto;
}

.mission-container h2{
    color:#ff9800;
    font-size:42px;
    margin-bottom:20px;
}

.mission-container p{
    color:#ddd;
    line-height:1.9;
    font-size:18px;
}

/* ===========================
   PROMISE
=========================== */

.promise-section{
    background:#111;
    padding:80px 10%;
}

.promise-container h2{
    color:#ff9800;
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
}

.promise-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.promise-item{
    background:#1c1c1c;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 20px rgba(255,152,0,.15);
}

.promise-item:hover{
    transform:translateY(-8px);
}

.promise-item span{
    font-size:50px;
}

.promise-item h3{
    color:#ff9800;
    margin:18px 0;
}

.promise-item p{
    color:#ccc;
    line-height:1.7;
}

/* ===========================
   CTA
=========================== */

.cta-section{
    background:#ff9800;
    padding:80px 20px;
    text-align:center;
}

.cta-container{
    max-width:800px;
    margin:auto;
}

.cta-container h2{
    color:#111;
    font-size:42px;
    margin-bottom:20px;
}

.cta-container p{
    color:#222;
    font-size:18px;
    margin-bottom:30px;
}

.cta-section .btn{
    background:#111;
    color:#fff;
}

.cta-section .btn:hover{
    background:#333;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#181818;
    border-top:2px solid #ff9800;
    padding:60px 8% 25px;
    margin-top:auto;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box h2{
    color:#fff;
    font-size:32px;
    margin-bottom:15px;
}

.footer-box h2 span{
    color:#ff9800;
}

.footer-box p{
    color:#bbb;
    line-height:1.8;
    margin:10px 0;
}

.footer-box h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#bbb;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ff9800;
    padding-left:8px;
}

.social-icons{
    margin-top:20px;
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#222;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff9800;
    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid #333;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    color:#999;
    font-size:15px;
}

.footer-bottom span{
    color:#ff9800;
}

/* ===========================
   3D TILT CARDS (JS-driven)
   works with .tilt-card added in HTML
   on .category-card / .menu-card / .why-card
=========================== */

.tilt-card{
    transform-style:preserve-3d;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    /* header/nav */
    .nav{
        padding:16px;
    }

    .logo{
        font-size:22px;
    }

    .menu-toggle{
        display:block;
        font-size:36px;
        color:#fff;
        cursor:pointer;
        z-index:1001;
    }

    .desktop-btn{
        display:none;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:rgba(17,17,17,.98);
        backdrop-filter:blur(12px);
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:0;
        max-height:0;
        overflow:hidden;
        transition:max-height .4s ease,padding .4s ease;
    }

    .navbar.active{
        display:flex;
        max-height:500px;
        padding:30px 0;
    }

    .navbar a{
        color:#fff;
        font-size:20px;
        font-weight:600;
        text-decoration:none;
    }

    .mobile-btn{
        display:inline-block;
        background:#ff6b00;
        color:#fff;
        padding:14px 28px;
        border-radius:30px;
        margin-top:10px;
    }

    /* hero: keep burger-stack contained and stacked above text */
    .hero{
        padding:40px 6% 60px;
        overflow:hidden;
    }

    .hero-content{
        flex-direction:column-reverse !important;
        gap:30px;
    }

    .hero-text,
    .hero-image{
        width:100%;
        min-width:0;
        flex:none !important;
    }

    .hero-text h1{
        font-size:32px;
        text-align:center;
    }

    .hero-text p{
        max-width:100%;
        text-align:center;
        margin:0 auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .burger-stack{
        width:min(280px, 70vw) !important;
        margin:0 auto !important;
    }

    /* why choose us */
    .why-choose{
        padding:70px 0;
    }

    .why-choose .section-title h2{
        font-size:32px;
    }

    .why-choose .section-title p{
        font-size:15px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    /* about (home) */
    .about-content{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    .about-gallery{
        display:none;
    }

    .about-slider{
        display:block;
        width:100%;
        overflow:hidden;
        border-radius:20px;
    }

    .about-slider img{
        width:100%;
        height:260px;
        object-fit:cover;
        display:block;
        border-radius:20px;
    }

    .about-text{
        width:100%;
    }

    .about-text h2{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    /* categories */
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* contact */
    .contact-grid{
        grid-template-columns:1fr;
    }

    /* about page */
    .about-hero .about-content h1{
        font-size:38px;
    }

    .about-hero .about-content p{
        font-size:16px;
    }

    .about-container{
        grid-template-columns:1fr;
    }

    .promise-box{
        grid-template-columns:1fr;
    }

    .mission-container h2,
    .promise-container h2,
    .cta-container h2{
        font-size:32px;
    }

    .about-card{
        padding:25px;
    }

    .promise-item{
        padding:25px;
    }

    /* footer */
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}

@media (max-width:480px){
    .category-grid{
        grid-template-columns:1fr;
    }

    .burger-stack{
        width:220px;
    }
}