/* Default: Full screen tetap sesuai desain awal */
/* header .relative {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8rem;
} */

/* Play button posisi di kiri bawah */
header .absolute.bottom-10 {
    left: 15rem;
}

#navbar {
    transition: background-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}



/* Responsive untuk layar kecil */
@media (max-width: 800px) {
    header .relative {
        flex-direction: column;
        text-align: center;
        padding: 0 2rem;
        align-items: center;
    }

    /* Play button pindah ke bawah tombol Learn More */
    header .absolute.bottom-10 {
        position: static;
        margin-top: 1rem;
    }

    header .text-left {
        text-align: center;
        margin: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    

    .video{
        font-size: 0.7rem;
    }

.playvideo{
    margin-bottom: 30px;
}

.logo{
    
    height: 60px !important; 
    width: 60px !important;
    margin-top: 5px !important;
    
}


   
}

@media (max-width: 550px){
    #main-title{
        font-size: 26px;
    }
}
@media (max-width: 1300px) {
    header .relative {
        flex-direction: column;
        text-align: center;
        padding: 0 2rem;
        align-items: center;
    }

    /* Play button pindah ke bawah tombol Learn More */
    header .absolute.bottom-10 {
        position: static;
        margin-top: 1rem;
    }

    header .text-left {
        text-align: center;
        margin: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    

    .video{
        font-size: 0.9rem;
    }

.playvideo{
    margin-bottom: 30px;
}
   
}


.promotion{
    padding: 100px 100px;
}

.card-header{
    background-color: red;
}

.card{
    margin-left: 30px;
}

.row{
    align-items: center;
    justify-content: center;
}

.logo{
    width: 100px;
    height: 100px;
    margin-top: 20px;
}

/* Logo kecil setelah scroll */
.logo-small {
    width: 90px !important;
    height: 80px !important;
    margin-top: 0 !important;
}

/* Navbar scrolled */
.navbar-scrolled {
    background-color: rgba(107, 114, 128, 0.9); /* gray-500 dengan opacity */
    backdrop-filter: blur(10px);
}

.facility-card {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.facility-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* Atur agar deskripsi di tengah, booking di bawah */
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 20px;  /* Beri padding agar lebih seimbang */
    padding-top: 100px; /* Deskripsi tidak terlalu atas */
    padding-bottom: 100px; /* Booking tidak terlalu bawah */
}
.overlay p {
    margin: 0;
    padding: 10px;
}

.toggle-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f87171;
    border: none;
    padding: 6px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.toggle-btn:hover {
    background: #ddd;
}

.booking{
    color: #f87171;
    margin-top: auto;
    align-items: center;
}
.booking a:hover {
    /* background: rgba(255, 255, 255, 0.5); */
    color: rgba(255, 255, 255, 0.5);
}

.logo2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 40px;
}

.logo2 i {
    color: #d4d4d4; /* Warna ikon */
    margin-bottom: 10px;
    font-size: 60px;
}

.logo2 p {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0;
    color: #d4d4d4;
}

.divider {
    width: 100px; /* Atur panjang garis */
    border: 2px solid #f87171; /* Warna dan ketebalan garis */
    margin: 5px auto; /* Beri jarak */
    margin-top: 30px;
}



.line {
    width: 60px;
    height: 2px;
    background-color: #ccc;
    margin: 8px 0;
}

.contact-us:hover{
background-color: rgb(250, 98, 98);
}



/* Efek zoom gambar saat hover */
.transition-img {
    transition: transform 0.5s ease;
}

.transition-img:hover {
    transform: scale(1.05);
}





/* Style button toggle di bawah gambar */
.toggle-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Style judul agar rata kiri */
.text-left {
    text-align: left;
    margin-left: 60px;
}

/* Hover efek untuk tombol Booking Now */
.booking a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booking a:hover {
    background-color: white;
    color: #000;
}


