html,
body{
    overflow-x:hidden;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;

    background:url("../assets/images/banner.webp") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.20),
        rgba(0,0,0,.55)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:#E7C37A;
}

.hero-top{
    display:block;

    font-size:58px;
    font-weight:300;

    letter-spacing:2px;
}

.hero-title{

    font-family:"Cormorant Garamond", serif;

    font-size:170px;
    font-style:italic;
    font-weight:500;

    line-height:.82;

    margin:-15px 0;
}

.hero-bottom{

    font-size:62px;
    font-weight:300;

    letter-spacing:2px;
}

.hero-address{

    position:absolute;

    bottom:45px;
    left:50%;

    transform:translateX(-50%);

    z-index:2;

    padding:10px 24px;
    max-width:calc(100% - 32px);

    border-radius:999px;

    background:rgba(0,0,0,.55);

    color:#fff;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;
    overflow-wrap:anywhere;
}

@media(max-width:992px){

.hero-title{
    font-size:110px;
}

.hero-top{
    font-size:42px;
}

.hero-bottom{
    font-size:42px;
}

}

@media(max-width:768px){

.hero{
    height:85vh;
}

.hero-title{
    font-size:72px;
}

.hero-top{
    font-size:28px;
}

.hero-bottom{
    font-size:30px;
}

.hero-address{

    width:auto;
    max-width:calc(100% - 32px);
    text-align:center;

    font-size:10px;
    letter-spacing:1.2px;
}

}

/* ==========================
   ABOUT
========================== */

.about{
    background:#F4EAD8;
    padding:110px 0;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

.about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:80px;
}

.about-image img{
    width:100%;
    display:block;
}

.about-content{
    color:#1F1F1F;
}

.section-title{
    display:block;

    margin-bottom:30px;

    font-size:14px;
    letter-spacing:3px;
    font-weight:600;

    color:#374536;
}

.about-content p{

    margin-bottom:22px;

    font-size:17px;
    line-height:1.85;

    color:#464646;

    font-weight:300;
}

.btn-primary{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    margin-top:20px;

    padding:15px 42px;

    border-radius:50px;

    background:#344735;

    color:#fff;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s;
}

.btn-primary:hover{

    background:#243324;

    transform:translateY(-3px);
}

@media(max-width:991px){

.about{
    padding:80px 0;
}

.about-grid{

    grid-template-columns:1fr;

    gap:50px;
}

.about-content{
    text-align:center;
}

}

/* ==========================================
   PAGE LOAD ANIMATION
========================================== */

body{
    opacity:0;
    transition:opacity .8s ease;
}

body.loaded{
    opacity:1;
}

/* ==========================================
   HERO ANIMATION
========================================== */

.hero-content > *{
    opacity:0;
    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

body.loaded .hero-top{
    transition-delay:.2s;
}

body.loaded .hero-title{
    transition-delay:.45s;
}

body.loaded .hero-bottom{
    transition-delay:.7s;
}

body.loaded .hero-address{
    opacity:1;
    transform:translateX(-50%) translateY(0);
    transition:
        opacity .8s ease,
        transform .8s ease;

    transition-delay:1s;
}

body.loaded .hero-content > *{
    opacity:1;
    transform:translateY(0);
}

/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active{

    opacity:1;

    transform:translateY(0);
}

/* Different speeds */

.reveal.delay-1{

    transition-delay:.15s;
}

.reveal.delay-2{

    transition-delay:.3s;
}

.reveal.delay-3{

    transition-delay:.45s;
}

/* ==========================================
   EDITORIAL STATEMENT
========================================== */

.statement-section{
    position:relative;

    background:
        linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
        url("../assets/images/cocktail.webp") center center/cover no-repeat;

    min-height:100vh;

    display:flex;
    align-items:center;
}

.statement-section .container{
    position:relative;

    width:min(92%,1400px);
    margin:0 auto;

    display:flex;
    align-items:center;

    min-height:100vh;
}

.statement-content{
    max-width:520px;
    z-index:2;
}

.statement-content h2{
    font-family:"Grotta",sans-serif;
    font-size:clamp(4rem,8vw,8rem);
    line-height:.9;
    font-weight:300;
    letter-spacing:-2px;
    text-transform:uppercase;

    color:#F5EFE2;
}

/* ==========================================
   RESERVATION BUTTON
========================================== */

.statement-btn{

    position:absolute;

    left:50%;
    bottom:60px;

    transform:translateX(-50%);

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    padding:20px 48px;

    min-width:320px;

    border:1px solid rgba(255,255,255,.45);
    border-radius:999px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    color:#fff;

    font-family:"Grotta",sans-serif;
    font-size:14px;
    font-weight:500;

    letter-spacing:2px;
    text-transform:uppercase;

    transition:all .4s ease;

    z-index:2;
}

.statement-btn::after{

    content:"→";

    font-size:16px;

    transition:transform .3s ease;
}

.statement-btn:hover{

    background:#D9B46B;
    border-color:#D9B46B;

    color:#111;
}

.statement-btn:hover::after{

    transform:translateX(6px);
}

.statement-btn.reveal{

    transform:translateX(-50%) translateY(60px);
}

.statement-btn.reveal.active{

    transform:translateX(-50%) translateY(0);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .statement-section{
        min-height:90vh;
    }

    .statement-content h2{

        font-size:clamp(3.5rem,9vw,6rem);
    }

    .statement-btn{

        min-width:280px;

        padding:18px 42px;

        font-size:13px;

        bottom:45px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .statement-section{

        justify-content:center;

        text-align:center;
    }

    .statement-section .container{

        justify-content:center;
    }

    .statement-content{

        max-width:100%;
    }

    .statement-content h2{

        font-size:56px;

        line-height:.95;
    }

    .statement-btn{

        left:50%;
        bottom:35px;

        transform:translateX(-50%);

        width:calc(100% - 40px);
        max-width:340px;
        min-width:unset;

        padding:18px 30px;

        font-size:12px;

        letter-spacing:1.5px;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .statement-content h2{

        font-size:42px;
    }

    .statement-btn{

        width:calc(100% - 30px);

        padding:16px 24px;

        font-size:11px;

        bottom:25px;
    }

    .statement-btn::after{

        font-size:14px;
    }

}

/* ==========================================
   RESERVATION
========================================== */

.reservation{

    background:#F4EAD8;

    padding:140px 0;
}

.reservation-heading{

    text-align:center;

    margin-bottom:70px;
}

.reservation-heading span{

    display:block;

    color:#4A5A43;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:16px;
}

.reservation-heading h2{

    font-size:clamp(3rem,5vw,5rem);

    font-weight:300;

    color:#1B1B1B;
}

.reservation-form{

    max-width:850px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;
}

.form-group{

    display:flex;
}

.full-width{

    grid-column:1/-1;
}

.reservation-form input,
.reservation-form select{

    width:100%;

    padding:18px 0;

    background:transparent;

    border:none;

    border-bottom:1px solid rgba(0,0,0,.25);

    font-family:"Grotta";

    font-size:15px;

    outline:none;

    transition:.3s;
}

.reservation-form input:focus,
.reservation-form select:focus{

    border-color:#1E1E1E;
}

.reserve-btn{

    grid-column:1/-1;

    justify-self:center;

    margin-top:30px;

    padding:18px 46px;

    border:none;

    border-radius:999px;

    background:#233628;

    color:#fff;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    cursor:pointer;

    transition:.35s;
}

.reserve-btn:hover{

    background:#111;
}

@media (max-width:991px){

    .reservation-grid{

        grid-template-columns:1fr;

        gap:50px;
    }

    .reservation-image{

        width:100%;
        height:350px;

        order:-1;

        overflow:hidden;
        border-radius:12px;
    }

    .reservation-image img{

        width:100%;
        height:100%;

        object-fit:cover;
        display:block;
    }

    .reservation-form{

        grid-template-columns:1fr;
    }

    .full-width{

        grid-column:auto;
    }

    .reserve-btn{

        width:100%;
    }

    .connect-section{

        text-align:center;
    }

    .connect-buttons{

        justify-content:center;
    }

}

/* ==========================================
   GRID
========================================== */

.reservation-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:80px;

    align-items:center;
}

/* ==========================================
   IMAGE
========================================== */

.reservation-image{

    height:760px;

    overflow:hidden;
}

.reservation-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}


@media (max-width:991px){

    .reservation-grid{

        grid-template-columns:1fr;

        gap:50px;
    }

    .reservation-image{

        width:100%;
        height:350px;

        order:-1;

        border-radius:12px;
    }

}

@media (max-width:480px){

    .reservation{

        padding:90px 0;
    }

    .reservation-heading{

        margin-bottom:45px;
    }

    .reservation-form{

        gap:22px;
    }

}

/* ==========================================
   CONNECT
========================================== */

.connect-section{

    margin-top:70px;
}

.connect-section p{

    color:#666;

    font-size:15px;

    margin-bottom:22px;
}

.connect-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.connect-buttons a{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    padding:14px 28px;

    border:1px solid #1B1B1B;
    border-radius:999px;

    color:#1B1B1B;

    text-decoration:none;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s;
}

.connect-buttons a:hover{

    background:#1B1B1B;

    color:#fff;
}