/* ===========================
   Reset
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    sans-serif;

    color:#444;
    background:#ffffff;
    line-height:1.8;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================
   Header
=========================== */

header{

    position:fixed;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:min(92%,1300px);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    background:transparent;

    transition:
        background .4s ease,
        box-shadow .4s ease,
        padding .4s ease;

    z-index:999;

}

header.scrolled{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    padding:16px 50px;

}

/* ===========================
   Logo
=========================== */

header.scrolled .logo{

    font-size:32px;
    font-weight:700;
    letter-spacing:4px;
    color:#6b533e;
    transition:.3s;

}

/* ===========================
   Navigation
=========================== */

nav ul{

    display:flex;
    align-items:center;
    gap:35px;

}

nav a{

    color:#ffffff;

    font-size:15px;

    transition:.3s;

}

nav a:hover{

    opacity:.7;

}

header.scrolled nav a{

    color:#555;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:900px){

header{

    top:10px;

    width:95%;

    padding:15px 20px;

    flex-direction:column;

}

header.scrolled{

    padding:12px 20px;

}

.logo{

    font-size:26px;

}

nav{

    margin-top:15px;

    width:100%;

}

nav ul{

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

nav a{

    font-size:14px;

}

}
header.scrolled nav a{

    color:#555;

}

nav a:hover{

    color:#b68b63;

}

/* ===========================
   Hero
=========================== */

.hero{

    position:relative;

    width:min(92%,1300px);

    height:85vh;

    margin:0 auto;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1);

    animation:heroZoom 15s linear forwards;

    transform-origin:center center;

}

.hero-text{

    position:absolute;

    top:50%;
    left:8%;

    transform:translateY(-50%);

    max-width:480px;

    z-index:2;

}

.hero h1{

    font-size:58px;

    line-height:1.3;

    color:#555;

    font-weight:300;

    margin-bottom:30px;

}

.hero p{

    font-size:20px;

    color:#666;

    margin-bottom:45px;

}

.btn{

    display:inline-block;

    padding:16px 42px;

    background:#8c6b4d;

    color:#fff;

    border-radius:40px;

    transition:.3s;

    font-size:17px;

}

.btn:hover{

    background:#6f543d;

    transform:translateY(-2px);

}

@keyframes heroZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.15);
    }

}

/* ===========================
   Section
=========================== */

.container{

    width:1100px;

    max-width:90%;

    margin:auto;

    padding:100px 0;

}

section h2{

    text-align:center;

    font-size:42px;

    font-weight:300;

    margin-bottom:50px;

    color:#6b533e;

    letter-spacing:2px;

}

.concept{

    background:#faf8f6;

}

.concept p{

    max-width:800px;

    margin:auto;

    text-align:center;

    font-size:19px;

    line-height:2.2;

}

/* ===========================
   MENU
=========================== */

.menu-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.menu-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:40px;

    max-width:1000px;

    margin:60px auto 0;

}

.menu-box{

    background:#fff;

    padding:35px 25px;

    min-height:220px;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.menu-box:hover{

    transform:translateY(-8px);

}

.menu-box h3{

    color:#8c6b4d;

    font-size:25px;

    margin-bottom:15px;

}

.menu-box p{

    color:#666;

}

/* ===========================
   ACCESS
=========================== */

.access{

    background:#faf8f6;

    text-align:center;

}

.access p{

    margin-bottom:12px;

}

/* ===========================
   Reserve
=========================== */

.reserve{

    text-align:center;

}

.reserve-btn{

    display:inline-block;

    margin-top:30px;

    background:#06C755;

    color:#fff;

    padding:18px 50px;

    border-radius:50px;

    font-size:18px;

    transition:.3s;

}

.reserve-btn:hover{

    background:#05b24d;

}

/* ===========================
   Footer
=========================== */

footer{

    background:#2f2f2f;

    color:#fff;

}

.footer-inner{

    width:1100px;

    max-width:90%;

    margin:auto;

    padding:60px 0;

    text-align:center;

}

.footer-inner h3{

    margin-bottom:20px;

    font-size:28px;

    letter-spacing:2px;

}

.footer-inner p{

    opacity:.85;

    margin-bottom:8px;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:900px){

header{

    padding:15px 20px;

    flex-direction:column;

}

nav{

    margin-top:15px;

}

nav ul{

    gap:18px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    height:90vh;

}

.hero-image{

    object-position:right center;

}

.hero-text{

    left:30px;
    right:30px;

    max-width:none;

}

.hero h1{

    font-size:36px;

}

.hero p{

    font-size:17px;

}

.menu-grid{

    grid-template-columns:1fr;

}

.container{

    padding:70px 0;

}

section h2{

    font-size:32px;

}

}