/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:white;
}

/* Navbar */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#111;
    position:fixed;
    width:100%;
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#ff9800;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ff9800;
}

/* Hero */

.hero{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1504674900247-0877df9cc836') center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.btn,
.whatsapp-btn{
    padding:14px 24px;
    border:none;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    display:inline-block;
    text-align:center;
}

.btn{
    background:#ff9800;
    color:black;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

/* Sections */

section{
    padding:100px 8%;
}

h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
    color:#ff9800;
}

/* Menu */

.menu-category{
    margin-bottom:70px;
}

.menu-category h3{
    margin-bottom:30px;
    font-size:30px;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#1a1a1a;
    border-radius:15px;
    overflow:hidden;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h4{
    padding:15px;
    font-size:22px;
}

.card p{
    padding:0 15px 20px;
    color:#ff9800;
    font-weight:600;
}

/* Deals */

.deals{
    background:#151515;
    text-align:center;
}

.deal-box{
    background:#222;
    padding:30px;
    border-radius:15px;
    margin:20px auto;
    max-width:500px;
}

.deal-box h3{
    color:#ff9800;
    margin-bottom:10px;
}

/* About */

.about{
    text-align:center;
    line-height:1.8;
}

/* Contact */

.contact{
    text-align:center;
}

.map{
    margin:30px 0;
}

.whatsapp-contact{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
}

/* Footer */

footer{
    background:#111;
    text-align:center;
    padding:20px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}
/* Responsive */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .nav-links{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn,
    .whatsapp-btn{
        width:80%;
        text-align:center;
    }
}