*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:black;
    color:white;
}

header{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
    font-size:35px;
    font-weight:bold;
    color:#1b4332 !important;
}

nav a{
    color:#333 !important;
    text-decoration:none;
    margin-left:25px;
    font-size:14px;
}

nav a:hover{
    color:#b8874f !important;
}

nav a:hover{
    color:#d4a373;
}
.hero{
    background-image:
    linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.4)
    ),
    url("https://images.pexels.com/photos/338504/pexels-photo-338504.jpeg");
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;

    display: flex;
    justify-content: center;  /* tengah horizontal */
    align-items: center;      /* tengah vertical */
    text-align: center;
    color: white;
}

.overlay h2{
    font-size:40px;
    letter-spacing:5px;
}

.overlay h1{
    font-size:90px;
    margin-top:15px;
}

.overlay p{
    margin-top:20px;
    font-size:22px;
}

.btn{
    display:inline-block;

    margin-top:30px;
    padding:15px 35px;

    background:#d4a373;
    color:white;

    text-decoration:none;
    border-radius:5px;
}


.booking-bar{
    background:#2c2118;
    padding:30px;
}

.booking-box{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.booking-box div{
    display:flex;
    flex-direction:column;
}

.booking-box label{
    margin-bottom:10px;
}

.booking-box input,
.booking-box select{
    padding:12px;
    width:180px;
}

.booking-box button{
    background:#d4a373;
    color:white;
    border:none;

    padding:15px 25px;

    margin-top:25px;

    cursor:pointer;
}


.facility{
    display:flex;
    justify-content:center;
    gap:30px;

    padding:80px 50px;
    flex-wrap:wrap;
}

.card{
    width:320px;
    text-align:center;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    margin-top:20px;
    color:#d4a373;
}

.card p{
    margin-top:15px;
    line-height:1.6;
}


.rooms{
    background:white;
    color:black;

    padding:80px 50px;

    text-align:center;
}

.rooms h2{
    margin-bottom:50px;
    letter-spacing:5px;
}


.rooms-page{
    padding:60px;
    background:#f5f5f5;
    text-align:center;
}

.rooms-page h1{
    font-size:45px;
    margin-bottom:50px;
    letter-spacing:5px;
}


.room-container{
    display:flex !important;
    justify-content:center !important;
    gap:20px !important;
}

.room-card{
    width:280px !important;
    flex:none !important;
}

.room-card img{
    width:280px !important;
    height:180px !important;

    max-width:280px !important;
    max-height:180px !important;

    min-width:280px !important;
    min-height:180px !important;

    object-fit:cover !important;

    display:block !important;

    border-radius:15px !important;
}
.contact-section{
    padding:80px 8%;
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.contact-box{
    background:#f5fff6;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
    background:#e9f7ee;
}

.contact-box h3{
    color:#1b4332;
    margin-bottom:10px;
}

.contact-box p{
    color:#444;
    line-height:1.7;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    width:100%;
}


