/*
|--------------------------------------------------------------------------
| BACKGROUND
|--------------------------------------------------------------------------
*/

body {
    background: linear-gradient(135deg, #f7fbff 0%, #edf4ff 100%);
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}





/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.hero-section {
    animation: fadeDown .8s ease;
}

.hero-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .35s;
}

.hero-card:hover {
    transform: translateY(-5px);
}





.logo-hotel {
    width: 250px;
    transition: .35s;
}

.logo-hotel:hover {
    transform: scale(1.05);
}





.judul-hotel {
    margin-top: 25px;
    font-size: 40px;
    font-weight: 700;
    color: #1b1f24;
    letter-spacing: 1px;
}





.subjudul {
    font-size: 20px;
    color: #6c757d;
    margin-top: 10px;
}





/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.info-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    animation: fadeUp .8s ease;
}





.info-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: #206bc4;
}





.info-card hr {
    width: 90px;
    height: 4px;
    border: none;
    border-radius: 10px;
    background: #206bc4;
    opacity: 1;
}





.deskripsi {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}





/*
|--------------------------------------------------------------------------
| DETAIL CARD
|--------------------------------------------------------------------------
*/
.detail-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    animation: fadeUp 1s ease;
}





.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(32, 107, 196, .18);
}





.detail-card h5 {
    font-weight: 700;
    margin-top: 18px;
    color: #1b1f24;
}





.detail-card p {
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.8;
}





/*
|--------------------------------------------------------------------------
| ICON
|--------------------------------------------------------------------------
*/
.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #206bc4, #4ea5ff);
    color: #fff;
    font-size: 36px;
    box-shadow: 0 12px 25px rgba(32, 107, 196, .35);
}





/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/
.btn-primary {
    border-radius: 40px;
    padding: 14px 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .35s;
}





.btn-primary:hover {
    transform: translateY(-3px);
}





/*
|--------------------------------------------------------------------------
| ANIMATION
|--------------------------------------------------------------------------
*/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/
@media(max-width:768px) {
    .hero-card {
        padding: 35px 20px;
    }

    .logo-hotel {
        width: 250px;
    }

    .judul-hotel {
        font-size: 28px;
    }

    .subjudul {
        font-size: 17px;
    }

    .info-card {
        padding: 30px 22px;
    }

    .info-card h2 {
        font-size: 24px;
    }

    .deskripsi {
        font-size: 16px;
        text-align: left;
    }

    .detail-card {
        margin-bottom: 20px;
    }
}




/* ==========================================
   LEGALIITAS USAHA
========================================== */

.legal-card {
    margin-top: 35px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    animation: fadeUp .8s ease;
}

.legal-header {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: #fff;
    padding: 18px 25px;
    font-size: 22px;
    font-weight: 700;
}

.legal-header i {
    margin-right: 10px;
}

.legal-body {
    padding: 25px;
}

.legal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.legal-item:last-child {
    border-bottom: none;
}

.legal-title {
    font-weight: 600;
    color: #666;
}

.legal-value {
    font-weight: 700;
    color: #222;
}



/* ==========================================
   GALERI HOTEL
========================================== */
.gallery-card {
    margin-top: 35px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    animation: fadeUp .8s ease;
}

.gallery-header {
    background: linear-gradient(135deg, #0d6efd, #4dabff);
    color: #fff;
    padding: 18px 25px;
    font-size: 24px;
    font-weight: 700;
}

.gallery-header i {
    margin-right: 10px;
}

.gallery-body {
    padding: 25px;
}

.gallery-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform .4s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .45);
    border-radius: 50%;
    padding: 22px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* =====================================
   FOTO HOTEL CARD
===================================== */
.hotel-photo-card {
    border-radius: 25px;
    overflow: hidden;
    animation: fadeHotel 0.8s ease;
}

.hotel-photo-header {
    background: linear-gradient(135deg,
            #0d6efd,
            #4da3ff);
    color: white;
    padding: 20px 25px;
}

.hotel-photo-header h3 {
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: .5px;
}



/* =====================================
   CAROUSEL
===================================== */
.hotel-carousel {
    border-radius: 20px;
    overflow: hidden;
}

.hotel-image {
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}


/*
    Membuat perpindahan lebih halus
*/
.carousel-item {
    transition:
        transform 1.2s ease-in-out;
}

/*
    Efek zoom kecil saat gambar muncul
*/
.carousel-item.active img {
    animation:
        zoomHotel 4s ease;
}


@keyframes zoomHotel {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@keyframes fadeHotel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
 Responsive Tablet / HP
*/
@media(max-width:768px) {
    .hotel-image {
        height: 350px;
    }
}




/*====================================================
            MAPS
====================================================*/
.hotel-map-card {
    border-radius: 25px;
    overflow: hidden;
    animation: fadeHotel .8s ease;
}


.hotel-map-header {
    background: linear-gradient(135deg,
            #198754,
            #37b36b);
    color: white;
    padding: 20px 25px;
}



.hotel-map-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}


.map-wrapper {
    height: 100%;
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.map-wrapper iframe {
    display: block;
}


.hotel-map-card .btn {
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 17px;
    transition: .3s;
}

.hotel-map-card .btn:hover {
    transform: translateY(-3px);
}





/*=====================================================
            INFORMASI HOTEL
=====================================================*/
.hotel-info-box {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hotel-info-box h3 {
    font-weight: 700;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h5 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.hotel-info-box .btn {
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: 600;
}




@media(max-width:768px) {
    .map-wrapper {
        min-height: 350px;
        margin-top: 20px;
    }

    .hotel-info-box {
        margin-bottom: 20px;
    }
}




/* ===========================================
   INFO HOTEL
=========================================== */

.info-item {
    align-items: flex-start;
    transition: .3s;
}

.info-item:hover {
    transform: translateX(8px);
}

.info-icon {

    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 18px;

    background: #eef6ff;

    color: #0d6efd;

    box-shadow: 0 8px 25px rgba(13, 110, 253, .12);

}

.info-icon svg {

    width: 28px;
    height: 28px;

}

.info-item h5 {

    font-weight: 700;
    margin-bottom: 8px;

}

.info-item p {

    font-size: 17px;
    color: #5b6574;
    line-height: 1.7;

}

.info-item a {

    color: #0d6efd;
    transition: .3s;

}

.info-item a:hover {

    color: #084298;

}





/* =====================================
   GOOGLE MAPS CARD
===================================== */

.map-card {
    overflow: hidden;
}


.map-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}




@media(max-width:768px) {

    .map-wrapper {
        height: 300px;
    }

}