@charset "UTF-8";

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

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

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#f5e6c8;
    font-family:
    "Yu Mincho",
    serif;
    overflow-x:hidden;
}

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

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

ul{
    list-style:none;
}

/* ======================================
   LOGO SECTION
====================================== */

.logo-wrap{

    width:100%;
    height:100vh;

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

    background:#000;

    overflow:hidden;

}

.logo{

    width:700px;
    max-width:85%;

    opacity:0;

    animation:
    logoFade 2s ease forwards;

}

/* ======================================
   LOGO ANIMATION
====================================== */

@keyframes logoFade{

    0%{

        opacity:0;
        transform:scale(.95);

    }

    100%{

        opacity:1;
        transform:scale(1);

    }

}

/* ======================================
   ISY SECTION
====================================== */

.isy-section{

    width:100%;
    min-height:45vh;

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

    background:#050505;

    overflow:hidden;

}

.isy-text{

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

    font-size:72px;
    font-weight:400;

    color:#fff;

    letter-spacing:2px;

    opacity:0;

    animation:
    isySlide 1.5s ease forwards;

    animation-delay:.5s;

}

.isy-text span{

    display:inline-block;

    white-space:nowrap;

}

/* ======================================
   ISY ANIMATION
====================================== */

@keyframes isySlide{

    0%{

        opacity:0;
        transform:translateX(-180px);

    }

    100%{

        opacity:1;
        transform:translateX(0);

    }

}

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

.luxury-hero{
    position:relative;
    width:100%;
    height:100vh;
    background:url("../images/bg01.PNG") center center/cover no-repeat;
}

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

/* ======================================
   LOGO
====================================== */

.hero-logo{
    position:absolute;
    top:40px;
    left:60px;
    z-index:20;
}

.hero-logo h2{
    font-size:34px;
    font-weight:400;
    line-height:1.4;
    letter-spacing:4px;
}

.hero-logo p{
    margin-top:10px;
    font-size:12px;
    color:#c8a46a;
    letter-spacing:4px;
}

/* ======================================
   NAVIGATION
====================================== */

.hero-nav{
    position:absolute;
    top:50px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:45px;
    z-index:20;
}

.hero-nav a{
    position:relative;
    color:#f5e6c8;
    font-size:13px;
    letter-spacing:3px;
    transition:.3s;
}

.hero-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:1px;
    background:#d8b47b;
    transition:.35s;
}

.hero-nav a:hover{
    color:#d8b47b;
}

.hero-nav a:hover::after{
    width:100%;
}

/* ======================================
   RESERVE BUTTON
====================================== */

.reserve-button{
    position:absolute;
    top:35px;
    right:60px;
    padding:18px 34px;
    border:1px solid rgba(200,164,106,.6);
    color:#f5e6c8;
    transition:.3s;
    z-index:20;
}

.reserve-button:hover{
    background:#d8b47b;
    color:#050505;
}

/* ======================================
   SIDE TEXT
====================================== */

.hero-side-text{
    position:absolute;
    top:220px;
    left:60px;
    writing-mode:vertical-rl;
    color:#d8b47b;
    font-size:22px;
    letter-spacing:5px;
    line-height:2.2;
    z-index:20;
}

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

.hero-content{
    position:absolute;
    top:50%;
    left:160px;
    transform:translateY(-50%);
    z-index:20;
}

.hero-content h1{
    font-size:76px;
    font-weight:400;
    line-height:1.5;
    letter-spacing:5px;
}

.keep{
    white-space:nowrap;
}

.hero-content p{
    margin-top:35px;
    font-size:18px;
    color:#ddd;
    line-height:2.2;
}

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

.hero-button{
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:45px;
    padding:20px 55px;
    border:1px solid rgba(200,164,106,.6);
    color:#f5e6c8;
    overflow:hidden;
    transition:.35s;
}

.hero-button::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(216,180,123,.15);
    transition:.35s;
    z-index:-1;
}

.hero-button:hover{
    border-color:#d8b47b;
    color:#fff;
    transform:translateY(-2px);
}

.hero-button:hover::before{
    left:0;
}

/* ======================================
   NEWS
====================================== */

.top-section{
    width:100%;
    background:#050505;
    border-top:1px solid rgba(216,180,123,.3);
    border-bottom:1px solid rgba(216,180,123,.3);
}

.right-box{
    max-width:1100px;
    margin:0 auto;
    padding:70px 80px;
}

.right-box h2{
    font-size:60px;
    font-weight:400;
    color:#f5e6c8;
    margin-bottom:35px;
}

.news-list{
    margin-top:25px;
}

.news-item{
    display:block;
    padding:20px 0;
    border-bottom:1px solid rgba(216,180,123,.15);
    color:#f5e6c8;
    transition:.3s;
}

.news-item:hover{
    padding-left:10px;
    color:#d8b47b;
}

.news-date{
    display:block;
    font-size:13px;
    color:#999;
    margin-bottom:8px;
    letter-spacing:1px;
}

.news-item p{
    font-size:17px;
    line-height:1.8;
}

.news-more{
    display:inline-block;
    margin-top:35px;
    color:#d8b47b;
    letter-spacing:3px;
    transition:.3s;
}

.news-more:hover{
    opacity:.7;
    transform:translateX(6px);
}

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

.luxury-menu{
    padding:120px 40px;
}

.menu-title{
    text-align:center;
    margin-bottom:80px;
}

.menu-title h2{
    font-size:90px;
    color:#d8b47b;
    font-weight:400;
    letter-spacing:6px;
}

.menu-title p{
    margin-top:20px;
    font-size:18px;
    color:#ddd;
    letter-spacing:2px;
}

/* ======================================
   GRID
====================================== */

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

/* ======================================
   CARD
====================================== */

.luxury-card{
    display:flex;
    flex-direction:column;
    padding:16px;
    background:rgba(0,0,0,.5);
    border:1px solid rgba(216,180,123,.5);
    overflow:hidden;
    transition:.35s;
}

.luxury-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    margin-bottom:24px;
    transition:.45s;
}

.luxury-card:hover{
    transform:translateY(-8px);
    border-color:#d8b47b;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.luxury-card:hover img{
    transform:scale(1.05);
}

/* ======================================
   TEXT
====================================== */

.luxury-text{
    display:flex;
    flex-direction:column;
    height:100%;
}

.luxury-text h3{
    font-size:28px;
    font-weight:400;
    color:#e5c78d;
    margin-bottom:20px;
    line-height:1.6;
}

.luxury-text p{
    margin-bottom:35px;
    font-size:15px;
    line-height:2;
    color:#ddd;
    min-height:90px;
}

.luxury-price{
    margin-top:auto;
    font-size:52px;
    color:#d8b47b;
}

/* ======================================
   MORE BUTTON
====================================== */

.more-button{
    text-align:center;
    margin-top:70px;
}

.more-button a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    padding:22px 60px;
    border:1px solid rgba(216,180,123,.5);
    color:#d8b47b;
    transition:.3s;
}

.more-button a:hover{
    background:#d8b47b;
    color:#050505;
}

.more-button span{
    font-size:22px;
}

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

footer{
    text-align:center;
    padding:60px 20px;
    color:#777;
}

/* ======================================
   SCROLL ANIMATION
====================================== */

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* ======================================
   Responsive - Mobile
====================================== */

@media screen and (max-width:768px){

html{
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

/* ======================================
   LOGO
====================================== */

.logo-wrap{
    height:60vh;
}

.logo{
    width:220px;
    max-width:80%;
}

/* ======================================
   ISY
====================================== */

.isy-section{
    min-height:22vh;
    padding:30px 20px;
}

.isy-text{
    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;
    font-weight:400;

    letter-spacing:0;

    text-align:center;

    animation:isySlide 1.5s ease forwards;
}

.isy-text span{
    display:inline-block;
    white-space:nowrap;
}

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

.luxury-hero{
    height:auto;
    min-height:100vh;
}

.hero-logo{
    top:20px;
    left:20px;
}

.hero-logo h2{
    font-size:22px;
}

.hero-logo p{
    margin-top:6px;
    font-size:10px;
    letter-spacing:2px;
}

/* ======================================
   NAV
====================================== */

.hero-nav{
    position:absolute;
    top:105px;
    left:50%;
    transform:translateX(-50%);

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

    width:82%;
    gap:10px 20px;

    justify-items:center;
    align-items:center;
    z-index:20;
}

.hero-nav a{
    display:block;
    text-align:center;

    font-size:13px;
    letter-spacing:2px;
    padding:4px 0;
    white-space:nowrap;
}

/* ======================================
   BUTTON
====================================== */

.reserve-button{

    top:20px;

    right:20px;

    padding:10px 18px;

    font-size:12px;

}

/* ======================================
   SIDE TEXT
====================================== */

.hero-side-text{

    display:none;

}

/* ======================================
   CONTENT
====================================== */

.hero-content{
    position:absolute;
    top:60%;
    left:16px;
    right:16px;
    width:auto;
    transform:translateY(-50%);
}

.hero-content h1{
    font-size:25px;
    line-height:1.5;
    letter-spacing:-0.03em;
    font-weight:400;

    white-space:normal;
    word-break:keep-all;
    overflow-wrap:anywhere;
}

.hero-content p{

    margin-top:20px;

    font-size:14px;

    line-height:2;


}

.hero-button{

    width:100%;

    justify-content:center;

    padding:16px;

    margin-top:30px;
}
/* ======================================
   NEWS
====================================== */

.right-box{
    padding:50px 25px;
    min-height:auto;
}

.right-box h2{
    font-size:38px;
    margin-bottom:25px;
}

.news-list{
    margin-top:20px;
}

.news-item{
    padding:16px 0;
}

.news-item p{
    font-size:15px;
    line-height:1.8;
}

.news-date{
    font-size:12px;
}

.news-more{
    display:block;
    text-align:center;
    margin-top:30px;
}

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

.luxury-menu{
    padding:80px 20px;
}

.menu-title{
    margin-bottom:50px;
}

.menu-title h2{
    font-size:48px;
    letter-spacing:2px;
}

.menu-title p{
    margin-top:15px;
    font-size:15px;
}

.luxury-grid{
    grid-template-columns:1fr;
    gap:30px;
}

/* ======================================
   CARD
====================================== */

.luxury-card{
    padding:15px;
    border-radius:12px;
}

.luxury-card img{
    margin-bottom:18px;
    border-radius:8px;
}

.luxury-text h3{
    font-size:24px;
    margin-bottom:15px;
}

.luxury-text p{
    min-height:auto;
    margin-bottom:20px;
    font-size:15px;
    line-height:1.8;
}

.luxury-price{
    font-size:36px;
}

/* ======================================
   MORE BUTTON
====================================== */

.more-button{
    margin-top:40px;
}

.more-button a{
    width:100%;
    justify-content:center;
    padding:18px;
}

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

footer{
    padding:50px 20px;
    font-size:13px;
}
}
/* ======================================
   TABLET
====================================== */



@media screen and (min-width:769px) and (max-width:1024px){

.luxury-menu{
    padding:100px 30px;
}

.luxury-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.hero-content{
    left:60px;
    right:60px;
}

.hero-content h1{
    
    font-size:30px;
    line-height:1.5;
    letter-spacing:0;
    white-space:normal;
    word-break:keep-all;
    overflow-wrap:normal;

}

.hero-content p{
    font-size:17px;
}

.right-box{
    padding:60px 40px;
}

.menu-title h2{
    font-size:68px;
}

}

/* ======================================
   LARGE DESKTOP
====================================== */

@media screen and (min-width:1600px){

.hero-content{
    left:220px;
}

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

.menu-title h2{
    font-size:110px;
}

.luxury-grid{
    gap:35px;
}

.right-box{
    max-width:1280px;
}

}

/* ======================================
   COMMON
====================================== */

html{
    scroll-behavior:smooth;
}

::selection{
    background:#d8b47b;
    color:#050505;
}

