/* Font Family */
body {
    font-family: 'Open Sans', sans-serif;
    padding-top: 80px; /* Ruang untuk fixed navbar */
}

h1, h2, h3, h4, h5, h6,
.display-4, .fw-bold {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.bdw-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../image/BDW_BG.png') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 15px;
}

/* Search Form */
.bdw-search-form {
    position: relative;
    margin-top: -30px;
}

/* Package Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Destination Card */
.destination-card {
    height: 250px;
    transition: transform 0.3s ease;
    position: relative;
}
.destination-card:hover {
    transform: scale(1.03);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .bdw-hero {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .bdw-hero {
        height: 50vh;
        text-align: center;
    }

    .bdw-search-form {
        margin-top: 0;
    }

    .destination-card {
        height: 200px;
    }
}
