body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    text-align: center;
    background: linear-gradient(to right, #ff5722, #ff9800);
    color: white;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
}
.container {
    width: 100vw; /* Lebar penuh layar */
    height: 100vh; /* Tinggi penuh layar */
    margin: 0;
    padding: 20px;
    background-image: url('../assets/images/background-homestay.jpg'); /* ganti path jika perlu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0; /* Sudut kotak penuh, opsional */
    box-shadow: none; /* Hapus bayangan agar menyatu dengan layar penuh */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* Tambahkan scroll jika konten tinggi */
}


/* Pusatkan judul Paket Wisata */
.container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}
.destinations {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.destination-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.destination-card img {
    width: 100%;
    height: 150px;
    object-fit:cover;
    border-radius: 10px;
}
.detail-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .destination-card {
        width: 45%;
    }
}
@media (max-width: 480px) {
    .destination-card {
        width: 100%;
    }
}