/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --brown:#3d2c1e;
    --deep-peach:#e07a5f;
    --cream:#fdf5ef;
    --bg:#fdf5ef;
    --card:#ffffff;
    --text:#3d2c1e;
    --text-muted:#8a7a6d;
    --on-dark:#f0f0f0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter", sans-serif;
    color:var(--text);
    background:var(--bg);
}


h1,h2,h3{
    font-family:"Inter", sans-serif;
}


a{
    text-decoration:none;
    color:inherit;
}


img{
    width:100%;
    display:block;
    object-fit:cover;
}


section{
    padding:80px 8%;
}


.btn{
    display:inline-block;
    padding:13px 28px;
    background:var(--brown);
    color:white;
    border-radius:30px;
    transition:.3s;
}


.btn:hover{
    background:var(--deep-peach);
    transform:translateY(-3px);
}


.outline-btn{
    display:inline-block;
    padding:13px 28px;
    border:2px solid var(--brown);
    color:var(--brown);
    border-radius:30px;
    transition:.3s;
}


.outline-btn:hover{
    background:var(--brown);
    color:white;
}





/* =========================
   NAVBAR
========================= */


header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:var(--bg);
    border-bottom:1px solid rgba(0,0,0,.08);
}


.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;

}


.logo{

    font-size:28px;
    font-weight:700;
    color:var(--brown);

}


.nav-links{

    display:flex;
    gap:35px;
    list-style:none;

}


.nav-links a{

    font-size:15px;
    transition:.3s;

}


.nav-links a:hover{

    color:var(--deep-peach);

}


.menu-icon{

    display:none;
    font-size:25px;
    cursor:pointer;

}





/* =========================
   HERO
========================= */


.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding-top:130px;

}


.hero-text{

    flex:1;

}


.hero-text span{
    color:var(--deep-peach);
    font-weight:600;
}


.hero-text h1{

    font-size:55px;
    line-height:1.2;
    margin:20px 0;

}


.hero-text p{
    color:var(--text-muted);
    max-width:520px;
    line-height:1.8;
    margin-bottom:30px;
}


.hero-buttons{

    display:flex;
    gap:20px;

}



.hero-image{

    flex:1;

}


.hero-image img{

    height:600px;
    border-radius:200px 200px 20px 20px;

}







/* =========================
   ABOUT
========================= */


.about{

    display:flex;
    gap:60px;
    align-items:center;

}


.about-image{

    flex:1;

}


.about-image img{

    border-radius:20px;

}



.about-content{

    flex:1;

}


.about-content h2,
.dishes h2,
.services h2,
.gallery h2,
.contact h2{

    font-size:40px;
    margin-bottom:25px;
    text-align:center;

}


.about-content p{

    line-height:1.8;
    margin-bottom:15px;

}



.stats{

    display:flex;
    gap:25px;
    margin-top:30px;

}


.stats div{
    background:var(--card);
    padding:20px;
    border-radius:15px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}


.stats h3{

    color:var(--brown);
    font-size:30px;

}






/* =========================
   DISHES
========================= */


.dishes{

    text-align:center;

}


.dish-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.dish-card{
    background:var(--card);
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    border:1px solid rgba(0,0,0,.06);
}


.dish-card:hover{

    transform:translateY(-10px);

}


.dish-card img{

    height:250px;

}


.dish-card h3{

    margin:20px 0 10px;

}


.dish-card p{
    padding:0 20px 25px;
    color:var(--text-muted);
}






/* =========================
   SERVICES
========================= */


.service-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.service-card{
    background:var(--card);
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    border-top:4px solid var(--brown);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid rgba(0,0,0,.06);
}


.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(224,122,95,.25);
    border-top-color:var(--deep-peach);

}


.service-card img{

    width:100%;
    height:170px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:22px;

}


.service-card i{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    margin-bottom:22px;
    border-radius:50%;
    font-size:28px;
    color:var(--brown);
    background:var(--cream);
    transition:.3s;
}


.service-card:hover i{

    color:white;
    background:var(--deep-peach);

}


.service-card h3{

    margin-bottom:12px;

}


.service-card p{
    color:var(--text-muted);
    line-height:1.7;
}






/* =========================
   GALLERY
========================= */


.gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}


.gallery-grid img{

    height:250px;
    border-radius:15px;
    transition:.3s;

}


.gallery-grid img:hover{

    transform:scale(1.05);

}






/* =========================
   CTA
========================= */


.cta{
    text-align:center;
    background:var(--brown);
    color:white;
}


.cta h2{

    font-size:40px;
    margin-bottom:30px;

}


.cta .btn{
    background:white;
    color:var(--brown);
}






/* =========================
   CONTACT
========================= */


.contact{
    text-align:center;
    color:var(--text);
}


form{

    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;

}


input,
textarea{

    padding:15px;
    border:none;
    border-radius:10px;
    font-family:inherit;

}


textarea{

    height:150px;

}






/* =========================
   FOOTER
========================= */


footer{
    background:var(--brown);
    color:var(--on-dark);
    text-align:center;
    padding:60px 8% 30px;
}


.footer-container{

    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
    max-width:1100px;
    margin:0 auto 30px;
    text-align:left;

}


.footer-brand{
    flex:1;
    min-width:220px;
}


.footer-brand h3{
    font-size:28px;
    margin-bottom:12px;
}


.footer-brand p{
    line-height:1.8;
    opacity:.85;
    max-width:260px;
}


.footer-links{
    min-width:140px;
}


.footer-links h4,
.footer-social h4{
    font-family:"Inter", sans-serif;
    font-size:20px;
    margin-bottom:15px;
}


.footer-links a{
    display:block;
    margin-bottom:10px;
    opacity:.85;
    transition:.3s;
}


.footer-links a:hover{
    opacity:1;
    color:var(--deep-peach);
    padding-left:5px;
}


.footer-social{
    min-width:160px;
}


.socials{

    display:flex;
    gap:15px;
    margin:0;

}


.socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:var(--deep-peach);
    transition:.3s;
}


.socials a:hover{
    background:var(--deep-peach);
    color:var(--brown);
    transform:translateY(-3px);
}


.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    font-size:14px;
    opacity:.8;
}





/* =========================
   RESPONSIVE DESIGN
========================= */


@media(max-width:900px){


.nav-links{

    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:var(--cream);
    flex-direction:column;
    align-items:center;
    padding:30px;
    display:none;

}


.nav-links.active{
    display:flex;
    background:var(--bg);
    border-bottom:1px solid rgba(0,0,0,.08);
}


.menu-icon{

    display:block;

}


.navbar .btn{

    display:none;

}



.hero,
.about{

    flex-direction:column;

}



.hero-text h1{

    font-size:40px;

}



.hero-image img{

    height:450px;

}



.dish-container,
.service-container{

    grid-template-columns:1fr;

}



.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}



.stats{

    flex-direction:column;

}


}



@media(max-width:500px){


section{

    padding:60px 5%;

}


.hero-text h1{

    font-size:32px;

}


.gallery-grid{

    grid-template-columns:1fr;

}


}