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

body{
    background:#111111;
    color:#F5F1E8;
    font-family:'Inter', sans-serif;
}

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

.navbar{
    padding:25px 0;
    position:fixed;
    width:100%;
    z-index:1000;
    transition:0.4s;
}

.navbar.scrolled{
    background:rgba(10,10,10,0.82);
    backdrop-filter:blur(12px);
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:32px;
    font-family:'Cormorant Garamond', serif;
    color:#C8A96B;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:#F5F1E8;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

nav a:hover{
    color:#C8A96B;
}

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:url('/assets/images/hero.webp?v=2') center center/cover no-repeat;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:90px;
    line-height:1;
    font-family:'Cormorant Garamond', serif;
    margin-bottom:30px;
    max-width:800px;
}

.hero p{
    font-size:18px;
    max-width:600px;
    color:#d2c8bc;
    line-height:1.7;
}

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

.btn{
    padding:16px 34px;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:0.3s;
    border-radius:2px;
}

.btn-primary{
    background:#C8A96B;
    color:#111111;
}

.btn-primary:hover{
    background:#d9bb7c;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:#F5F1E8;
}

.btn-secondary:hover{
    border-color:#C8A96B;
    color:#C8A96B;
}

.footer{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#8A8175;
}

.categories{
    padding:120px 0;
}

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

.section-title span{
    color:#C8A96B;
    letter-spacing:3px;
    font-size:13px;
}

.section-title h2{
    font-size:56px;
    margin-top:15px;
    font-family:'Cormorant Garamond', serif;
}

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

.category-card{
    position:relative;
    height:420px;
    overflow:hidden;
    text-decoration:none;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.category-card .content{
    position:absolute;
    bottom:30px;
    left:30px;
    z-index:2;
}

.category-card h3{
    font-size:42px;
    font-family:'Cormorant Garamond', serif;
    color:#fff;
}

.atmosphere{
    position:relative;
    padding:180px 0;
    background:url('/assets/images/atmosphere.webp?v=1') center center/cover no-repeat;
}

.atmosphere .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
}

.atmosphere .container{
    position:relative;
    z-index:2;
}

.atmosphere-content{
    max-width:700px;
}

.atmosphere-content span{
    color:#C8A96B;
    letter-spacing:3px;
    font-size:13px;
}

.atmosphere-content h2{
    font-size:72px;
    line-height:1.1;
    margin:20px 0 30px;
    font-family:'Cormorant Garamond', serif;
}

.atmosphere-content p{
    color:#d2c8bc;
    line-height:1.8;
    margin-bottom:40px;
    font-size:18px;
}

.featured-menu{
    padding:140px 0;
}

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

.featured-card{
    background:#181818;
    overflow:hidden;
    transition:0.4s;
}

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

.featured-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.featured-content{
    padding:30px;
}

.featured-content h3{
    font-size:34px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond', serif;
}

.featured-content p{
    color:#a39b90;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:1200px){

    .featured-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .hero h1{
        font-size:70px;
    }

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

}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero{
        height:auto;
        padding:180px 0 120px;
    }

    .hero h1{
        font-size:52px;
    }

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

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .section-title h2{
        font-size:42px;
    }

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

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

    .atmosphere{
        padding:120px 0;
    }

    .atmosphere-content h2{
        font-size:48px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:42px;
    }

    .logo{
        font-size:26px;
    }

    .section-title h2{
        font-size:36px;
    }

    .category-card{
        height:340px;
    }

}

.mobile-toggle{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.mobile-toggle span{
    width:28px;
    height:2px;
    background:#fff;
}

.mobile-menu{
    position:fixed;
    inset:0;
    background:#111111;
    z-index:999;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:30px;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
}

.mobile-menu.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu a{
    color:#F5F1E8;
    text-decoration:none;
    font-size:34px;
    font-family:'Cormorant Garamond', serif;
}

@media(max-width:768px){

    .mobile-toggle{
        display:flex;
    }

}

.menu-hero{
    height:60vh;
    position:relative;
    display:flex;
    align-items:center;
    background:url('/assets/images/atmosphere.webp?v=1') center center/cover no-repeat;
}

.menu-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
}

.menu-hero .container{
    position:relative;
    z-index:2;
}

.menu-hero-content span{
    color:#C8A96B;
    letter-spacing:3px;
    font-size:13px;
}

.menu-hero-content h1{
    font-size:82px;
    margin:20px 0;
    font-family:'Cormorant Garamond', serif;
}

.menu-hero-content p{
    max-width:600px;
    color:#d2c8bc;
    line-height:1.8;
}

.menu-section{
    padding:120px 0;
}

.menu-tabs{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.tab-btn{
    background:#1a1a1a;
    border:none;
    color:#F5F1E8;
    padding:14px 28px;
    cursor:pointer;
    transition:0.3s;
    font-size:14px;
}

.tab-btn.active,
.tab-btn:hover{
    background:#C8A96B;
    color:#111111;
}

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

.menu-card{
    background:#181818;
    overflow:hidden;
    transition:0.4s;
}

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

.menu-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.menu-content{
    padding:30px;
}

.menu-content h3{
    font-size:34px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond', serif;
}

.menu-content p{
    color:#a39b90;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:1200px){

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

}

@media(max-width:768px){

    .menu-hero{
        height:auto;
        padding:180px 0 120px;
    }

    .menu-hero-content h1{
        font-size:54px;
    }

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

}

@media(max-width:768px){

    .menu-section{
        padding:70px 0;
    }

    .menu-tabs{
        display:flex;
        flex-wrap:nowrap;
        overflow-x:auto;
        gap:10px;
        margin-bottom:35px;
        padding-bottom:10px;
        -webkit-overflow-scrolling:touch;
    }

    .tab-btn{
        flex:0 0 auto;
        padding:12px 20px;
        white-space:nowrap;
        font-size:13px;
    }

    .menu-card img{
        height:300px;
    }

    .menu-content{
        padding:24px;
    }

    .menu-content h3{
        font-size:30px;
    }

}