html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial;
    background:#111;
    color:white;
    overflow-x:hidden;
}







/* ANIMASI */

.fade-in{
    opacity:0;
    transform:translateY(50px);
    transition:all 1s ease;
}

.fade-in.show{
    opacity:1;
    transform:translateY(0);
}



/* WHATSAPP */

.wa-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:30px;
    right:30px;
    background:#25d366;
    color:white;
    border-radius:50%;
    text-align:center;
    font-size:35px;
    line-height:65px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 0 20px rgba(37,211,102,0.6);
    transition:0.3s;
}

.wa-float:hover{
    transform:scale(1.1);
}



/* BACK TO TOP */

#topBtn{
    position:fixed;
    bottom:110px;
    right:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:gold;
    color:black;
    font-size:25px;
    cursor:pointer;
    z-index:999;
    transition:0.3s;
    display:none;
}

#topBtn:hover{
    transform:scale(1.1);
}



/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
    position:fixed;
    width:100%;
    box-sizing:border-box;
    top:0;
    z-index:1000;
    transition:0.4s;
}

.scroll-nav{
    background:black;
    box-shadow:0 0 20px rgba(0,0,0,0.5);
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:gold;
    letter-spacing:3px;
}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-size:18px;
    transition:0.3s;
}

.menu a:hover{
    color:gold;
}

.menu a.active{
    color:gold;
    border-bottom:2px solid gold;
    padding-bottom:5px;
}



/* HERO FIX */

.hero{

    min-height:100vh;

    padding-top:120px;

    box-sizing:border-box;

    background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url("images/kamar ac.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;
}

.hero-content{

    z-index:2;

    padding:20px;

    width:90%;

    max-width:900px;

    margin:auto;
}

.hero h1{

    font-size:85px;

    color:gold;

    margin-bottom:20px;

    margin-top:0;

    text-shadow:0 0 20px rgba(255,215,0,0.5);
}

.hero p{
    font-size:28px;
    margin-bottom:35px;
    color:#eee;
}

.hero a,
.harga-card a,
footer a,
.lokasi-button a{
    display:inline-block;
    background:gold;
    color:black;
    padding:16px 38px;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
}

.hero a{
    animation:pulse 2s infinite;
}

.hero a:hover,
.harga-card a:hover,
footer a:hover,
.lokasi-button a:hover{
    background:white;
    transform:scale(1.05);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 rgba(255,215,0,0.5);
    }

    50%{
        box-shadow:0 0 30px rgba(255,215,0,0.9);
    }

    100%{
        box-shadow:0 0 0 rgba(255,215,0,0.5);
    }

}



/* STATISTIK */

.statistik{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:80px 30px;
    background:#0d0d0d;
}

.stat-box{
    width:220px;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    text-align:center;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(255,215,0,0.3);
}

.stat-box h1{
    color:gold;
    font-size:45px;
    margin-bottom:10px;
}

.stat-box p{
    color:#ddd;
}



/* SECTION */

.fasilitas,
.harga,
.galeri,
.testimoni,
.lokasi,
.faq{
    padding:120px 50px;
    text-align:center;
}

.harga{
    background:#0b0b0b;
}

.testimoni{
    background:#101010;
}

.lokasi{
    background:#0d0d0d;
}

.fasilitas h2,
.harga h2,
.galeri h2,
.testimoni h2,
.lokasi h2,
.faq h2{
    font-size:50px;
    color:gold;
    margin-bottom:60px;
}



/* CONTAINER */

.card-container,
.harga-container,
.galeri-container,
.testimoni-container,
.faq-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}



/* CARD */

.card,
.harga-card,
.testi-card,
.faq-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border-radius:25px;
    transition:0.4s;
    box-shadow:0 0 20px rgba(0,0,0,0.3);
    position:relative;
    overflow:hidden;
}

.card,
.faq-box{
    width:300px;
    padding:30px;
}

.harga-card,
.testi-card{
    width:320px;
    padding:40px 30px;
}

.card:hover,
.harga-card:hover,
.testi-card:hover,
.faq-box:hover{
    transform:translateY(-15px);
    box-shadow:0 0 30px rgba(255,215,0,0.25);
}

.card h3,
.harga-card h3,
.testi-card h3,
.faq-box h3{
    color:gold;
}

.card h3{
    font-size:25px;
}

.harga-card h3{
    font-size:30px;
}

.harga-card h1{
    font-size:60px;
    margin:20px 0;
}

.card p,
.harga-card p,
.harga-card ul li,
.testi-card p,
.faq-box p{
    color:#ddd;
}

.harga-card ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.harga-card ul li{
    margin:15px 0;
    font-size:18px;
}

.premium{
    border:2px solid gold;
}



/* BADGE */

.badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:gold;
    color:black;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
}



/* TESTIMONI */

.testi-card h4{
    color:white;
    font-size:20px;
}



/* GALERI */

.galeri-box{
    width:350px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    position:relative;
}

.galeri-box img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.6s;
}

.galeri-box:hover img{
    transform:scale(1.15);
}



/* MAP */

.map-container{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 0 30px rgba(0,0,0,0.5);
}



/* BUTTON LOKASI */

.lokasi-button{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}



/* FOOTER */

footer{
    background:black;
    text-align:center;
    padding:80px 20px;
}

footer h2{
    color:gold;
    font-size:42px;
}

footer p{
    margin:20px 0;
    font-size:20px;
    color:#ccc;
}



/* POPUP */

#popup{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.82);

    display:flex;

    justify-content:center;
    align-items:center;

    z-index:99999;

    padding:20px;

    box-sizing:border-box;
}

.popup-content{

    background:#111;

    padding:35px;

    border-radius:25px;

    text-align:center;

    border:2px solid gold;

    box-shadow:0 0 40px rgba(255,215,0,0.35);

    width:100%;

    max-width:520px;

    overflow:hidden;
}

.popup-content h2{

    font-size:42px;

    margin-bottom:20px;

    color:gold;
}

.popup-content p{

    font-size:22px;

    color:white;

    margin-bottom:30px;
}

.popup-content button{

    background:gold;

    color:black;

    border:none;

    padding:15px 40px;

    border-radius:15px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;
}



/* RESPONSIVE */

@media(max-width:768px){

    nav{
        flex-direction:column;
        padding:20px;
    }

    .menu{
        margin-top:15px;
    }

    .menu a{
        display:inline-block;
        margin:10px;
    }

    .hero{

        padding-top:180px;

        min-height:auto;

        padding-bottom:100px;

        background-attachment:scroll;
    }

    .hero h1{
        font-size:50px;
    }

    .hero p{
        font-size:20px;
    }

    .card,
    .harga-card,
    .galeri-box,
    .stat-box,
    .testi-card,
    .faq-box{
        width:100%;
    }

    .fasilitas,
    .harga,
    .galeri,
    .testimoni,
    .lokasi,
    .faq{
        padding:80px 20px;
    }

    .wa-float{
        width:60px;
        height:60px;
        line-height:60px;
        font-size:30px;
    }

    .popup-content{

        padding:25px;
    }

    .popup-content h2{

        font-size:28px;
    }

    .popup-content p{

        font-size:18px;
    }

}

/* =========================
AUTO SLIDER GALERI
========================= */

.slider-container{

    width:100%;

    overflow:hidden;

    position:relative;

    margin-top:40px;
}



.slider-track{

    display:flex;

    width:calc(350px * 12);

    animation:scrollSlider 35s linear infinite;
}



.slider-track img{

    width:350px;

    height:250px;

    object-fit:cover;

    margin-right:20px;

    border-radius:20px;

    transition:0.4s;

    box-shadow:0 0 20px rgba(0,0,0,0.5);
}



.slider-track img:hover{

    transform:scale(1.05);

    box-shadow:0 0 25px gold;
}



@keyframes scrollSlider{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(calc(-350px * 6));
    }

}



/* MOBILE */

@media(max-width:768px){

    .slider-track img{

        width:280px;

        height:200px;
    }

}
/* =========================
RUNNING TEXT
========================= */

.running-text{

    position:fixed;

    top:90px;

    left:0;

    width:100%;

    background:gold;

    color:black;

    padding:12px 0;

    font-weight:bold;

    font-size:18px;

    white-space:nowrap;

    overflow:hidden;

    z-index:999;
}



.running-text{

    animation:runningText 15s linear infinite;
}



@keyframes runningText{

    0%{

        transform:translateX(100%);
    }

    100%{

        transform:translateX(-100%);
    }

}



/* =========================
SOCIAL FLOAT
========================= */

.social-float{

    position:fixed;

    left:20px;

    bottom:30px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;
}



.social-float a{

    width:55px;

    height:55px;

    background:rgba(255,215,0,0.15);

    border:1px solid gold;

    backdrop-filter:blur(10px);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:24px;

    color:white;

    transition:0.3s;

    box-shadow:0 0 15px rgba(255,215,0,0.2);
}



.social-float a:hover{

    transform:scale(1.15);

    background:gold;

    color:black;

    box-shadow:0 0 25px gold;
}



/* =========================
GLOW EFFECT
========================= */

.hero h1{

    animation:glowText 2s infinite alternate;
}



@keyframes glowText{

    from{

        text-shadow:0 0 10px gold;
    }

    to{

        text-shadow:
        0 0 20px gold,
        0 0 40px gold,
        0 0 60px gold;
    }

}



/* MOBILE */

@media(max-width:768px){

    .running-text{

        top:140px;

        font-size:14px;
    }

    .social-float{

        left:10px;
    }

    .social-float a{

        width:48px;

        height:48px;

        font-size:20px;
    }

}
/* =========================
VIDEO BACKGROUND
========================= */

.hero-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-3;

    filter:brightness(0.35);
}



/* =========================
SCROLL BAR
========================= */

#progressBar{

    position:fixed;

    top:0;
    left:0;

    width:0%;

    height:5px;

    background:gold;

    z-index:999999;

    box-shadow:0 0 15px gold;
}



/* =========================
CUSTOM CURSOR
========================= */

.custom-cursor{

    width:20px;

    height:20px;

    border:2px solid gold;

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    transform:translate(-50%, -50%);

    z-index:999999;

    transition:transform 0.1s;
}



/* EFFECT CLICK */

.click-effect{

    position:fixed;

    width:15px;

    height:15px;

    background:gold;

    border-radius:50%;

    pointer-events:none;

    animation:clickAnim 0.6s forwards;

    z-index:999999;
}



@keyframes clickAnim{

    0%{

        opacity:1;

        transform:scale(1);
    }

    100%{

        opacity:0;

        transform:scale(6);
    }

}



/* MOBILE */

@media(max-width:768px){

    .hero-video{

        object-position:center;
    }

}
/* =========================
THEME BUTTON
========================= */

#themeToggle{

    position:fixed;

    top:20px;

    right:20px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:gold;

    color:black;

    font-size:25px;

    cursor:pointer;

    z-index:999999;

    transition:0.3s;

    box-shadow:0 0 20px rgba(255,215,0,0.4);
}



#themeToggle:hover{

    transform:scale(1.1);

}



/* =========================
LIGHT MODE
========================= */

body.light-mode{

    background:#f5f5f5;

    color:#111;
}



body.light-mode nav{

    background:rgba(255,255,255,0.8);
}



body.light-mode .card,
body.light-mode .harga-card,
body.light-mode .faq-box,
body.light-mode .testi-card,
body.light-mode .stat-box{

    background:white;

    color:black;

    border:1px solid rgba(0,0,0,0.08);
}



body.light-mode p,
body.light-mode li,
body.light-mode .faq-box p{

    color:#333;
}



body.light-mode footer{

    background:#eaeaea;
}



body.light-mode .menu a{

    color:black;
}



body.light-mode .menu a.active{

    color:gold;
}



body.light-mode .running-text{

    background:black;

    color:gold;
}
/* =========================
LIVE VISITOR
========================= */

.live-visitor{

    position:fixed;

    left:20px;

    top:180px;

    background:rgba(0,0,0,0.75);

    color:white;

    padding:14px 22px;

    border-radius:15px;

    z-index:9999;

    font-size:16px;

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,215,0,0.2);

    box-shadow:0 0 20px rgba(255,215,0,0.15);
}



/* =========================
ROOM STATUS
========================= */

.room-status{

    position:fixed;

    left:20px;

    top:250px;

    background:gold;

    color:black;

    padding:14px 22px;

    border-radius:15px;

    font-weight:bold;

    z-index:9999;

    animation:pulseRoom 1.5s infinite;
}



@keyframes pulseRoom{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.05);
    }

    100%{

        transform:scale(1);
    }

}



/* =========================
LIVE CHAT
========================= */

.live-chat{

    position:fixed;

    bottom:120px;

    left:20px;

    width:300px;

    background:#111;

    border-radius:20px;

    overflow:hidden;

    z-index:99999;

    border:1px solid rgba(255,215,0,0.2);

    box-shadow:0 0 30px rgba(0,0,0,0.4);
}



.chat-header{

    background:gold;

    color:black;

    padding:15px;

    font-weight:bold;
}



.chat-body{

    padding:20px;

    color:white;

    font-size:16px;
}



.live-chat a{

    display:block;

    text-align:center;

    background:#25d366;

    color:white;

    text-decoration:none;

    padding:15px;

    font-weight:bold;

    transition:0.3s;
}



.live-chat a:hover{

    background:#1ebd5a;
}



/* MOBILE */

@media(max-width:768px){

    .live-chat{

        width:90%;

        left:5%;
    }

    .live-visitor{

        top:220px;

        font-size:14px;
    }

    .room-status{

        top:290px;
    }

}
/* =========================
BOOKING POPUP
========================= */

#bookingPopup{

    position:fixed;

    left:20px;

    bottom:30px;

    background:#111;

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px 20px;

    border-radius:18px;

    z-index:99999;

    box-shadow:0 0 25px rgba(0,0,0,0.4);

    border:1px solid rgba(255,215,0,0.2);

    animation:popupBooking 0.5s ease;

    max-width:350px;
}



#bookingPopup img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;
}



#bookingPopup h4{

    margin:0;

    color:white;

    font-size:16px;
}



#bookingPopup p{

    margin:5px 0 0;

    color:#aaa;

    font-size:13px;
}



/* ANIMATION */

@keyframes popupBooking{

    from{

        transform:translateX(-100px);

        opacity:0;
    }

    to{

        transform:translateX(0);

        opacity:1;
    }

}



/* MOBILE */

@media(max-width:768px){

    #bookingPopup{

        width:90%;

        left:5%;
    }

}
/* =========================
IMAGE MODAL
========================= */

#imageModal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;
}



/* IMAGE */

#modalImg{

    width:85%;

    max-width:1100px;

    border-radius:25px;

    animation:zoomImage 0.4s ease;

    box-shadow:0 0 40px rgba(255,215,0,0.25);
}



/* CLOSE BUTTON */

#closeModal{

    position:absolute;

    top:30px;

    right:40px;

    font-size:40px;

    color:white;

    cursor:pointer;

    transition:0.3s;
}



#closeModal:hover{

    color:gold;

    transform:scale(1.1);
}



/* ZOOM ANIMATION */

@keyframes zoomImage{

    from{

        transform:scale(0.7);

        opacity:0;
    }

    to{

        transform:scale(1);

        opacity:1;
    }

}



/* IMAGE POINTER */

.galeri-box img,
.slider-track img{

    cursor:pointer;
}



/* MOBILE */

@media(max-width:768px){

    #modalImg{

        width:95%;
    }

    #closeModal{

        top:20px;

        right:25px;

        font-size:32px;
    }

}