/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f7f8fa;
    color:#222;
}

/* BACK TO HOME */
.back-home{
    position:fixed;
    top:90px; /* below navbar */
    left:30px;
    z-index:1100;
    padding:10px 22px;
    border-radius:25px;
    background:#ffffff;
    color:#333;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.back-home:hover{
    background:#c59d5f;
    color:#fff;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:#ffffffee;
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo{
    font-size:1.5rem;
    font-weight:700;
    letter-spacing:1px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#c59d5f;
}

/* HERO */
.hero{
    height:100vh;
    background:
        linear-gradient(to bottom,rgba(0,0,0,.55),rgba(0,0,0,.35)),
        url("images/hero-genting.jpg") center/cover no-repeat;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero h1{
    font-size:3.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.hero-btn{
    padding:15px 35px;
    background:#c59d5f;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    background:#b0894d;
}

/* SECTIONS */
.section{
    padding:100px 10%;
}

.section.light{
    background:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section h2{
    text-align:center;
    font-size:2.3rem;
    margin-bottom:40px;
    position:relative;
}

.section h2::after{
    content:"";
    width:60px;
    height:4px;
    background:#c59d5f;
    display:block;
    margin:15px auto 0;
    border-radius:2px;
}

/* ABOUT */
#about p{
    max-width:800px;
    margin:auto;
    text-align:center;
    font-size:1.05rem;
    line-height:1.9;
}

/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* AMENITIES */
.amenities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.amenity{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:16px;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.amenity:hover{
    transform:translateY(-5px);
}

/* BOOKING FORM */
.booking-form{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.form-group{
    margin-bottom:20px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

input, select{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #ccc;
    font-size:1rem;
}

.whatsapp-btn{
    width:100%;
    margin-top:20px;
    padding:18px;
    background:#25d366;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:1.1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ebc59;
}

/* FOOTER */
footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:25px;
    font-size:.9rem;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1{font-size:2.3rem}
    .navbar{padding:15px 5%}
    .section{padding:80px 6%}
    .back-home{
        top:80px;
        left:15px;
        padding:8px 18px;
        font-size:.9rem;
    }
}
