body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #f9faff; 
}
/* Membuat hero section (gambar besar di depan) lebih cantik */
.hero-search {
    position: relative;
    background-attachment: fixed; /* Efek parallax sederhana */
}

/* Membuat kartu homestay naik sedikit saat di-hover mouse */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Naik ke atas 5px */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Warna Badge Harga */
.badge-price {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* Mempercantik Scrollbar (Opsional - Webkit only) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}