:root{
    --black:#060606;
    --black-soft:#101010;
    --card:#1A1A1A;
    --gold:#B99A45;
    --gold-light:#D5C28F;
    --white:#FFFFFF;
}

/* ---------------- RESET ---------------- */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:
    linear-gradient(
        180deg,
        var(--black),
        var(--black-soft)
    );

    color:var(--white);

    overflow-x:hidden;

}

/* ---------------- HERO ---------------- */

.hero{

    position:relative;

    min-height:100vh;

    height:auto;

    overflow:hidden;

}

.hero-banner{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.10) 100%
    );

    z-index:1;

}

.hero-content{

    position:relative;

    z-index:2;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    padding:60px 40px 60px 80px;

}

.hero-logo{

    width:260px;

    margin-bottom:40px;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:4.2rem;

    line-height:1.05;

    margin-bottom:24px;

    max-width:700px;

}

.hero-content p{

    max-width:550px;

    font-size:1.15rem;

    color:#ECECEC;

    line-height:1.7;

    margin-bottom:32px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    background:var(--gold);

    color:white;

    padding:16px 28px;

    border-radius:999px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

/* ---------------- BENEFITS ---------------- */

.benefits{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:1px;

    background:#222;

}

.benefit{

    background:#111;

    padding:24px 16px;

    text-align:center;

}

.benefit i{

    color:var(--gold);

    font-size:28px;

    margin-bottom:14px;

}

.benefit h3{

    margin-bottom:10px;

    font-size:1rem;

}

.benefit p{

    color:#BDBDBD;

    font-size:.82rem;

    line-height:1.5;

}

/* ---------------- SECTION TITLE ---------------- */

.section-title{

    text-align:center;

    padding:50px 20px 20px;

}

.section-title h2{

    font-family:'Playfair Display',serif;

    font-size:2rem;

}

/* ---------------- CAROUSEL ---------------- */

.carousel{

    display:flex;

    gap:18px;

    overflow-x:auto;

    scroll-snap-type:x mandatory;

    padding:20px;

    scrollbar-width:none;

}

.carousel::-webkit-scrollbar{
    display:none;
}

.card{

    position:relative;

    min-width:82%;

    flex-shrink:0;

    border-radius:24px;

    overflow:hidden;

    scroll-snap-align:center;

    transform:scale(.90);

    opacity:.55;

    transition:.35s;

}

.card.active{

    transform:scale(1);

    opacity:1;

}

.card img{

    width:100%;

    height:280px;

    display:block;

    object-fit:cover;

}

.card::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:220px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,0)
    );

}

.card-content{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    z-index:2;

    padding:24px;

}

.card-content h3{

    margin-bottom:10px;

    font-size:1.2rem;

}

.card-content p{

    color:#E5E5E5;

    margin-bottom:14px;

    line-height:1.5;

    font-size:.92rem;

}

.meta{

    color:var(--gold-light);

    margin-bottom:16px;

    font-size:.9rem;

}

.outline-btn{

    display:inline-block;

    border:2px solid var(--gold);

    color:var(--gold);

    text-decoration:none;

    padding:10px 18px;

    border-radius:999px;

    font-weight:600;

    transition:.3s;

}

.outline-btn:hover{

    background:var(--gold);

    color:white;

}

/* ---------------- DOTS ---------------- */

.carousel-dots{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:8px;

    margin-bottom:40px;

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#555;

}

.dot.active{

    background:var(--gold);

}

/* ---------------- RESERVE ---------------- */

.reserve-section{

    padding:10px 20px 60px;

    text-align:center;

}

.reserve-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    min-width:280px;

    max-width:420px;

    text-decoration:none;

    background:var(--gold);

    color:white;

    padding:20px 40px;

    border-radius:999px;

    font-size:1.15rem;

    font-weight:600;

}

.reserve-section p{

    margin-top:16px;

    color:#D0D0D0;

    font-size:.9rem;

}

/* ---------------- FOOTER ---------------- */

footer{

    padding:40px 20px 60px;

    text-align:center;

}

.socials{

    display:flex;

    justify-content:center;

    gap:24px;

    margin-bottom:24px;

}

.socials a{

    color:var(--gold);

    font-size:1.6rem;

}

.gyg-link{

    display:inline-block;

    color:var(--gold-light);

    text-decoration:none;

    margin-bottom:30px;

}

.footer-info h4{

    margin-bottom:10px;

}

.footer-info p{

    margin-top:8px;

    color:#D0D0D0;

}

/* ---------------- DESKTOP ---------------- */

@media(max-width:899px){

    .hero{
        min-height:760px;
    }

    .hero-content{
        min-height:760px;
        justify-content:flex-start;
        padding:90px 30px 90px 30px;
    }

    .hero-logo{
        width:220px;
        margin-bottom:30px;
    }

    .hero-content h1{
        font-size:3.2rem;
    }

}

@media(min-width:900px){

    .carousel{

        justify-content:center;

        gap:30px;

        overflow:visible;

    }

    .card{

        min-width:340px;
        max-width:340px;

    }

    .card img{

        height:340px;
        object-fit:cover;

    }

    .card.active{

        transform:scale(1.05);

    }

}