php{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

.hero{
    position:relative;
    height:100vh;
    pidding-top :90px;
    background:
    linear-gradient(
    rgba(0,0,0,.50),
    rgba(0,0,0,.50)
    ),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    padding:20px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background-color:rgba(0,0,0,0.3);

    z-index:9999;
}

.logo{
    color:white;
    text-align:center;
}

.logo span{
    display:block;
    font-size:7px;
    letter-spacing:3px;
}

.logo h2{
    font-family:"Times New Roman", serif;
    font-size:25px;
    margin:2px 0;
}

.menu{
    display:flex;
    list-style:none;
    gap:45px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:300;
    transition:.3s;
}

.menu a:hover{
    color:#d4af37;
}

/* HERO */

.hero-content{
    position:absolute;

    top:45%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:100%;
}

.welcome{
    color:white;
    letter-spacing:12px;
    animation:welcomeDown 1.5s ease;
    font-size:18px;
    margin-bottom:20px;
    font-weight:200;
}

.hotel-title{
    color:white;
    font-family:"Times New Roman", serif;
    font-size:68px;

    text-shadow:
    0 0 5px #fff,
    0 0 15px #b39b4d,
    0 0 25px #d4af37,
    0 0 40px #d4af37;
}

.divider{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:15px;

    margin:25px 0;

    color:#d4af37;
}

.divider span{
    width:200px;
    height:1px;
    background:#d4af37;
}

.subtitle{
    color:white;

    font-size:24px;

    font-family:"Times New Roman", serif;

    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;

    background:#d4af37;

    color:black;

    text-decoration:none;

    padding:12px 32px;

    border-radius:4px;

    font-weight:bold;
}

/* FACILITY */

.facility-bar{
    position:absolute;

    left:50%;
    bottom:-60px;

    transform:translateX(-50%);

    width:82%;

    background:rgba(0,0,0,0.35);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border-radius:18px;

    padding:30px;

    display:flex;
    justify-content:space-between;
}

.facility{
    display:flex;
    align-items:center;
    gap:15px;
}

.facility i{
    color:#d4af37;
    font-size:46px;
}

.facility h3{
    color:white;
    font-size:18px;
    margin-bottom:5px;
    font-family:"Times New Roman", serif;
}

.facility p{
    color:#d0d0d0;
    font-size:13px;
    line-height:1.4;
}

.promo{
    background:#1b1b1b;
    text-align:center;
    padding:80px 10%;
}

.promo span{
    color:#d4af37;
    letter-spacing:4px;
    font-size:14px;
}

.promo h2{
    color:white;
    font-size:48px;
    font-family:"Times New Roman", serif;
    margin:15px 0;
}

.promo p{
    color:#d0d0d0;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.promo-btn{
    display:inline-block;
    margin-top:30px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    padding:14px 35px;
    border-radius:5px;
    font-weight:bold;
}

.promo-btn:hover{
    transform:translateY(-3px);
}

/* ABOUT */

.about{
    padding:120px 10%;
    background:#201e1e;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    display:block;
}

.about-content{
    flex:1;
}

.about-tag{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
}

.about-content h2{
    color:white;
    font-size:50px;
    font-family:"Times New Roman", serif;
    margin:15px 0 25px;
}

.about-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;

    margin-top:15px;

    background:#d4af37;
    color:black;

    padding:14px 35px;

    text-decoration:none;

    font-weight:bold;

    border-radius:4px;
}

/* ANIMASI ABOUT */

.about{
    animation:aboutFade 1.5s ease;
}

.about-image{
    animation:leftSlide 1.5s ease;
}

.about-content{
    animation:rightSlide 1.5s ease;
}

@keyframes leftSlide{
    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes rightSlide{
    from{
        opacity:0;
        transform:translateX(80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes aboutFade{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

/* ROOMS */

.rooms{
    padding:120px 10%;
    background:#e8e0d0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-size:50px;
    color:#222;
    margin:15px 0;
    font-family:"Times New Roman", serif;
}

.section-title p{
    color:#666;
    font-size:16px;
}

.rooms-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.room-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.room-info{
    padding:25px;
}

.room-info h3{
    font-size:28px;
    color:#222;
    margin-bottom:10px;
    font-family:"Times New Roman", serif;
}

.room-info p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.room-info a{
    text-decoration:none;
    color:#d4af37;
    font-weight:bold;
    letter-spacing:1px;
}

/* FACILITIES */

.facilities{
    padding:100px 8%;
    background:#e8e0d0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    color:#222;
    margin:15px 0;
    font-family:"Times New Roman", serif;
}

.section-title p{
    color:#777;
    max-width:600px;
    margin:auto;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.facility-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.facility-card:hover{
    transform:translateY(-10px);
}

.facility-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.facility-content{
    padding:25px;
    text-align:center;
}

.facility-content h3{
    font-size:28px;
    margin-bottom:10px;
    color:#222;
    font-family:"Times New Roman", serif;
}

.facility-content p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

    .facility-grid{
        grid-template-columns:1fr;
    }

}
/* PEMBATAS SECTION */
.section-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin:50px auto 40px;
}

.section-divider .line{
    width:90px;
    height:1px;
    background:#d4af37;
}

.divider-text{
    color:#d4af37;
    font-size:13px;
    letter-spacing:4px;
    font-weight:600;
}

.footer{
    background:#161616;
    padding:80px 10% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-col h2,
.footer-col h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-col p,
.footer-col a{
    color:#d0d0d0;
    text-decoration:none;
    display:block;
    margin-bottom:12px;
    line-height:1.8;
}

.footer-col a:hover{
    color:#d4af37;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
    color:#999;
    text-align:center;
}

@media(max-width:768px){
    .footer-container{
        grid-template-columns:1fr;
    }
}
.promo h2{
    animation: goldGlow 2s infinite alternate;
}

@keyframes goldGlow{
    from{
        text-shadow: 0 0 5px #d4af37;
    }
    to{
        text-shadow:
        0 0 10px #d4af37,
        0 0 20px #d4af37,
        0 0 30px #d4af37;
    }
}
.hero-content h4{
    animation: fadeUp 1s ease forwards;
}

.hero-content h1{
    animation: fadeUp 1.5s ease forwards;
}

.hero-content p{
    animation: fadeUp 2s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.accommodation-page{
    padding:100px 10%;
    background:#f5f0e8;
}

.page-title{
    text-align:center;
    margin-bottom:60px;
}

.page-title span{
    color:#d4af37;
    letter-spacing:3px;
}

.page-title h1{
    font-size:50px;
    margin-top:10px;
}

.room-item{
    display:flex;
    gap:40px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.room-item img{
    width:450px;
    height:300px;
    object-fit:cover;
}

.room-info{
    padding:30px;
}

.room-info h2{
    margin-bottom:15px;
}

.room-info ul{
    margin:20px 0;
}

.room-info li{
    list-style:none;
    margin:10px 0;
}

.room-info h3{
    color:#d4af37;
    margin-bottom:20px;
}

.book-btn{
    display:inline-block;
    padding:12px 30px;
    background:#d4af37;
    color:#fff !important;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    font-size:16px;
    line-height:1;
}

/* BOOKING PAGE */

.booking-page{
    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),
    url("images/lounge1.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.booking-header{
    text-align:center;
    margin-bottom:20px;
}

.booking-header h1{
    color:white;
    font-size:50px;
}

.booking-header p{
    color:#ddd;
}

.booking-box{
    width:320px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:25px;
}

.booking-box form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.booking-box input,
.booking-box select{
    width:100%;

    padding:12px;

    border:none;

    border-radius:12px;

    box-sizing:border-box;
}

.booking-box button{
    width:100%;

    padding:13px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
    90deg,
    #d4af37,
    #b8860b
    );

    color:white;

    font-weight:bold;

    cursor:pointer;
}
/* BOOKING PAGE */

.booking-page{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("../images/room4.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
}

.booking-box{
    width:100%;
    max-width:380px;

    padding:35px;

    background:rgba(255,255,255,0.15);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.25);

    border-radius:25px;

    text-align:center;
}

.hotel-booking{
    color:#d4af37;
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:15px;
}

.booking-box h1{
    font-size:48px;
    margin-bottom:10px;
}

.booking-box p{
    color:#eee;
    margin-bottom:25px;
}

.booking-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.booking-box input,
.booking-box select{
    width:100%;
    padding:14px;

    border:none;
    border-radius:12px;

    background:white;
}

.booking-box button{
    background:linear-gradient(
        90deg,
        #b8860b,
        #d4af37
    );

    color:white;

    border:none;

    padding:14px;

    border-radius:12px;

    font-size:16px;

    cursor:pointer;
}
.price-box{
    margin:15px 0;
    padding:15px;

    background:rgba(255,255,255,0.15);

    border-radius:15px;

    color:white;

    text-align:center;
}

.price-box p{
    margin:5px 0;
    color:#eee;
}

.price-box h3{
    color:#d4af37;
    margin-bottom:10px;
}

.price-box h2{
    color:#ffd700;
    font-size:28px;
}
/* DATA TAMU */

.guest-data{
    margin-bottom:15px;
    padding:15px;

    background:rgba(255,255,255,.15);

    border-radius:15px;

    color:white;

    text-align:left;

    backdrop-filter:blur(10px);
}

.guest-data p{
    margin:8px 0;
}

/* HARGA */

.price-box{
    margin:15px 0;
    padding:15px;

    background:rgba(255,255,255,.15);

    border-radius:15px;

    color:white;

    text-align:center;

    backdrop-filter:blur(10px);
}

.price-box p{
    margin:5px 0;
}

.price-box h3{
    color:#d4af37;
    margin-bottom:10px;
    font-size:20px;
}

.price-box h2{
    color:#ffd700;
    font-size:28px;
}

/* BOOKING BUTTON */

.booking-box button{
    width:100%;

    padding:14px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
    90deg,
    #b8860b,
    #d4af37
    );

    color:white;

    font-size:16px;
    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.booking-box button:hover{
    transform:translateY(-2px);
}
.booking-card{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.card-content{
width:500px;
max-width:90%;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.3);
overflow:auto;
max-height:80vh;
}

.card-content h2{
text-align:center;
color:#d4af37;
margin-bottom:20px;
}

.card-content button{
width:100%;
padding:12px;
margin-top:15px;
border:none;
border-radius:10px;
background:#d4af37;
color:white;
font-weight:bold;
cursor:pointer;
}

.booking-page{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:50px 20px;

background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url('../images/room4.jpg');

background-size:cover;
background-position:center;
}

.booking-box{
width:600px;
max-width:100%;
padding:40px;

background:rgba(255,255,255,.15);
backdrop-filter:blur(20px);

border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.3);

color:white;
}

.hotel-booking{
text-align:center;
letter-spacing:5px;
color:#d4af37;
font-weight:bold;
margin-bottom:15px;
}

.booking-box h1{
text-align:center;
font-size:60px;
margin-bottom:10px;
}

.booking-box p{
text-align:center;
margin-bottom:20px;
}

.booking-box input,
.booking-box select{
width:100%;
padding:15px;
margin-bottom:15px;

border:none;
border-radius:15px;
outline:none;
}

.price-box{
background:white;
padding:20px;
border-radius:20px;
text-align:center;
margin-bottom:20px;
}

.price-box p{
color:#666;
}

.price-box h2,
.price-box h3{
color:#d4af37;
}

.footer-bottom{
background:#111;
color:white;
text-align:center;
padding:15px;
}
footer{
    background:#1f1f1f;
    width:100%;
    padding:20px 0;
    margin-top:50px;
}

.footer-bottom{
    color:#fff;
    text-align:center;
    margin:0;
    padding:0;
    border:none;
}
