/*====================================================
                RESET
====================================================*/

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

html,
body{
    scroll-behavior:smooth;
    padding:0;
    margin:0;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

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

ul{
    list-style:none;
}

.container{
    width:min(1180px,90%);
    margin:auto;
}

section{
    padding:110px 0;
}

/*====================================================
                VARIABLES
====================================================*/

:root{

    --primary:#0B0B0B;
    --secondary:#666666;
    --accent:#7CFF00;

    --white:#ffffff;

    --light:#f7f7f7;

    --shadow:0 18px 40px rgba(0,0,0,.12);

    --transition:.35s ease;

}

/*====================================================
                TYPOGRAPHY
====================================================*/

h1,
h2,
h3{

    line-height:1.2;
    font-weight:700;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

    font-size:.9rem;

}

.section-title h2{

    font-size:3rem;

    margin:15px 0;

}

.section-title p{

    color:var(--secondary);

    max-width:650px;

    margin:auto;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(10,10,10,.9);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:1.9rem;
    font-weight:700;
    color:white;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:50%;
}

.logo .accent{
    color:var(--accent);
}

.nav-links{

    display:flex;

    gap:38px;

}

.nav-links a{

    color:white;

    transition:var(--transition);

    font-weight:500;

}

.nav-links a:hover{

    color:var(--accent);

}

/*====================================================
                BUTTONS
====================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:40px;

    background:var(--accent);

    color:#111;

    font-weight:600;

    transition:var(--transition);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:40px;

    border:2px solid white;

    color:white;

    transition:var(--transition);

}

.btn-outline:hover{

    background:white;

    color:#111;

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:

    linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.68)),

    url("assets/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:white;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.55)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:820px;

}

.hero-tag{

    display:inline-block;

    color:var(--accent);

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:5rem;

    margin-bottom:25px;

}

.hero p{

    max-width:700px;

    margin:auto auto 45px;

    font-size:1.15rem;

    color:#dddddd;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*====================================================
                    ABOUT
====================================================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about h2{
    font-size:3rem;
    margin-bottom:25px;
}

.about p{
    color:var(--secondary);
    margin-bottom:22px;
    font-size:1.02rem;
}

/*====================================================
                    SERVICES
====================================================*/

.services{
    background:var(--light);
}

.food-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.food-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.food-card:hover{
    transform:translateY(-10px);
}

.food-card img{
    height:240px;
    object-fit:cover;
}

.food-content{
    padding:30px;
}

.food-content h3{
    margin-bottom:15px;
    font-size:1.5rem;
}

.food-content p{
    color:var(--secondary);
}

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

.menu{
    background:#fff;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.menu-box{
    background:var(--light);
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.menu-box h3{
    margin-bottom:25px;
    color:var(--primary);
    font-size:1.8rem;
}

.menu-box ul li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.menu-box ul li:last-child{
    border-bottom:none;
}

.menu-box span{
    color:#333;
    font-weight:500;
}

.menu-box strong{
    color:var(--accent);
}

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

.gallery{
    background:var(--light);
}

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

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    box-shadow:var(--shadow);
    cursor:pointer;
}

.gallery-item img{
    height:280px;
    object-fit:cover;
    transition:.5s ease;
}

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

/*====================================================
                TESTIMONIALS
====================================================*/

.testimonials{
    background:#fff;
}

.testimonials .food-card{
    padding:35px;
}

.testimonials .food-content{
    padding:0;
}

.testimonials .food-content p{
    margin:25px 0;
    font-style:italic;
    color:var(--secondary);
    line-height:1.8;
}

.testimonials strong{
    color:var(--accent);
    font-size:1rem;
}

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

.contact{

    background:#111;

    color:white;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.contact-info h3{

    font-size:2.5rem;

    margin-bottom:25px;

}

.contact-info p{

    color:#d4d4d4;

    margin-bottom:18px;

    font-size:1.05rem;

}

.contact-info .btn{

    margin-top:20px;

}

.contact iframe{

    width:100%;

    height:420px;

    border:none;

    border-radius:20px;

    box-shadow:var(--shadow);

}

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

footer{

    background:#000;

    color:#aaa;

    text-align:center;

    padding:60px 0;

}

footer h3{

    color:white;

    font-size:2rem;

    margin-bottom:20px;

}

footer span{

    color:var(--accent);

}

footer p{

    margin:12px 0;

}

footer p:last-child{
    margin-bottom:0;
}

.social-links{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:30px 0;

}

.social-links a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#1b1b1b;

    transition:.35s;

    font-size:1.2rem;

}

.social-links a:hover{

    background:var(--accent);

    color:#111;

    transform:translateY(-5px);

}

/*====================================================
                FLOATING WHATSAPP
====================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:2rem;

    box-shadow:var(--shadow);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*====================================================
                SCROLL REVEAL
====================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*====================================================
                SMALL ANIMATIONS
====================================================*/

.food-card,
.gallery-item,
.menu-box{

    transition:.35s;

}

.food-card:hover{

    transform:translateY(-10px);

}

.gallery-item:hover{

    transform:translateY(-8px);

}

.menu-box:hover{

    transform:translateY(-8px);

}

.nav-links a.active{
    color: var(--accent);
}

#lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
    padding:20px;
}

#lightbox.active{
    display:flex;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
}

#backToTop{
    position:fixed;
    left:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--accent);
    color:#111;
    font-size:1.2rem;
    cursor:pointer;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    transform:translateY(-5px);
}

/*====================================================
                MOBILE (992px)
====================================================*/

@media(max-width:992px){

.hero h1{

    font-size:3.8rem;

}

.about-grid{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

.menu-grid{

    grid-template-columns:1fr;

}

.hero{

    padding:140px 0 100px;

}

.section-title h2{

    font-size:2.5rem;

}

}

/*====================================================
                MOBILE (768px)
====================================================*/

@media(max-width:768px){

nav{

    height:75px;

}

.nav-links{

    display:none;

}

.hero{

    min-height:90vh;

}

.hero h1{

    font-size:2.8rem;

}

.hero p{

    font-size:1rem;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.about h2{

    font-size:2.2rem;

}

.section-title h2{

    font-size:2.2rem;

}

.food-grid{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.contact-info{

    text-align:center;

}

.social-links{

    margin-top:20px;

}

section{

    padding:90px 0;

}

}

/*====================================================
                MOBILE (480px)
====================================================*/

@media(max-width:480px){

.logo{

    font-size:1.5rem;

}

.hero h1{

    font-size:2.2rem;

}

.hero-tag{

    font-size:.8rem;

    letter-spacing:2px;

}

.hero p{

    font-size:.95rem;

}

.btn,
.btn-outline{

    width:100%;

    justify-content:center;

}

.food-card img{

    height:220px;

}

.gallery-item img{

    height:220px;

}

.contact iframe{

    height:300px;

}

footer{

    padding:45px 0;

}

}