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

body{
    font-family:'Poppins',sans-serif;
    background:#090B10;
    color:#ffffff;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

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

.navbar{
    position:sticky;
    top:0;
    background:#090B10;
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:999;
}

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

.logo{
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.logo span{
    color:#D4AF37;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:white;
    transition:.3s;
    font-weight:500;
}

nav ul li a:hover{
    color:#D4AF37;
}

.booking-btn{
    background:#D4AF37;
    color:#111;
    padding:12px 25px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.booking-btn:hover{
    transform:translateY(-2px);
}

.hero{

height:100vh;

background:url("../images/hero.jpg") center center/cover no-repeat;

position:relative;

display:flex;

align-items:center;

}

.hero-overlay{

width:100%;

height:100%;

background:rgba(0,0,0,.65);

display:flex;

align-items:center;

}

.hero h1{

font-size:72px;

font-weight:700;

margin-bottom:10px;

}

.hero h1 span{

color:#D4AF37;

}

.hero h2{

font-size:32px;

margin-bottom:20px;

font-weight:500;

}

.hero-subtitle{

color:#D4AF37;

letter-spacing:5px;

margin-bottom:15px;

}

.hero-text{

max-width:650px;

font-size:18px;

line-height:1.8;

margin-bottom:35px;

color:#ddd;

}

.hero-button{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-gold{

background:#D4AF37;

color:#111;

padding:15px 35px;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.btn-dark{

border:2px solid #D4AF37;

padding:15px 35px;

border-radius:50px;

color:#fff;

transition:.3s;

}

.btn-gold:hover{

transform:translateY(-3px);

}

.btn-dark:hover{
    background:#D4AF37;
    color:#111;
}

/* Tambahkan kode responsive di bawah sini */
@media (max-width:768px){

.container{
    width:92%;
}

.navbar .container{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.booking-btn{
    width:100%;
    text-align:center;
}

.hero{
    min-height:100vh;
    background-position:center;
}

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

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

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

.hero-button{
    flex-direction:column;
}

.btn-gold,
.btn-dark{
    width:100%;
    text-align:center;
}

}

@media (max-width:768px){

    nav{
        display:none;
    }

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

    .booking-btn{
        width:auto;
    }

}