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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f1ea;
    color:#4e342e;
}

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

.navbar{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 5%;
    background:rgba(255,248,240,.92);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:1.8rem;
    font-weight:700;
    color:#7a5230;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar a{
    text-decoration:none;
    color:#5d4037;
    font-weight:500;
}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(55,35,20,.45),rgba(55,35,20,.45)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=1920");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    color:white;
}

.hero-content span{
    letter-spacing:3px;
    color:#f6d7b0;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    margin:20px 0;
}

.hero p{
    max-width:650px;
    font-size:1.1rem;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:16px 35px;
    background:#c89b6d;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#b67c4b;
    letter-spacing:3px;
}

.section-title h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    margin-top:10px;
}

.about{
    background:#fffaf5;
}

.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    line-height:1.8;
}

.features{
    background:#efe2d2;
}

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

.feature{
    text-align:center;
    padding:30px;
}

.feature i{
    font-size:2.5rem;
    color:#b67c4b;
    margin-bottom:15px;
}

.menu-section{
    background:#fffaf5;
}

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

.menu-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.menu-card h3{
    margin-bottom:10px;
}

.menu-card strong{
    display:block;
    margin-top:15px;
    color:#b67c4b;
    font-size:1.2rem;
}

.gallery{
    background:#efe2d2;
}

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

.photo{
    height:280px;
    border-radius:20px;
    background:
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=1200");
    background-size:cover;
    background-position:center;
}

.contact{
    background:#fffaf5;
}

.contact-box{
    max-width:600px;
    margin:auto;
    text-align:center;
}

.contact-box p{
    margin:20px 0;
    font-size:1.1rem;
}

.contact-box i{
    color:#b67c4b;
    margin-right:10px;
}

footer{
    background:#5d4037;
    color:#f5e9dc;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){

    .navbar ul{
        display:none;
    }

    .hero h1{
        font-size:3rem;
    }

    .section-title h2{
        font-size:2.2rem;
    }
}