.btn-primary {
    background-color: #005A42 !important; 
    color: white !important;
}
   
.wisata-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wisata-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 10px;
}

.wisata-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #005A42;
}

.wisata-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Jarak antar item */
    list-style: none;
    padding: 0;
}

.wisata-card {
    width: 23%; /* Ukuran untuk 4 kolom */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .wisata-card {
        width: 100%; /* Mengubah lebar menjadi 100% pada layar kecil */
    }
}

.wisata-card a {
    text-decoration: none !important; /* Menghilangkan garis bawah pada link */
}

.wisata-card a:hover {
    text-decoration: underline; /* Opsional: menambahkan garis bawah saat hover */
}


/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .wisata-card {
        width: 100%; /* Mengubah lebar menjadi 100% pada layar kecil */
    }
}

.wisata-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.card-date {
    font-size: 0.9rem;
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: block;
    padding: 8px 12px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
}

.page-link:hover {
    background-color: #e0e0e0;
}

.page-item.active .page-link {
    background-color: #007bff;
    color: white;
}

/* Responsive */
@media (max-width: 428px) {
    .wisata-title {
        font-size: 1.6rem; /* Ukuran font judul utama lebih kecil */
    }

    .wisata-list {
        flex-direction: column; /* Mengubah tata letak menjadi satu kolom */
        align-items: center; /* Pusatkan item */
        gap: 15px; /* Mengurangi jarak antar item */
    }

    .wisata-card {
        width: 95%; /* Memastikan kartu mengambil hampir seluruh lebar */
        margin: 0 auto; /* Pusatkan kartu */
    }

    .card-img {
        height: 150px; /* Mengurangi tinggi gambar */
    }

    .card-title {
        font-size: 1.1rem; /* Ukuran font judul kartu lebih kecil */
    }

    .card-date {
        font-size: 0.8rem; /* Ukuran font tanggal lebih kecil */
    }

    .card-body {
        padding: 10px; /* Mengurangi padding pada body kartu */
    }

    .pagination .page-link {
        padding: 6px 10px; /* Mengurangi padding pada pagination link */
        font-size: 0.9rem;
    }
}

