
.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; /* Tambahkan transisi */
    margin-top: 0; /* Set margin-top menjadi 0 */
    padding-top: 0; /* Set padding-top menjadi 0 */
}

/* CSS untuk styling gambar */
section {
    text-align: center; /* Posisikan gambar di tengah */
    position: relative; /* Buat posisi relatif */
}

img {
    max-width: 100%; /* Gambar tidak melebihi lebar parent */
    height: auto; /* Lebar gambar menyesuaikan proporsi */
}

.absolute-top-left {
    top: 1rem;
    left: 1rem;
}

.absolute-top-right {
    top: 1rem;
    right: 1rem;
}

.carousel-button {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
}

 /* CSS untuk tombol Hubungi Kami */
#hubungi-kami {
    position: fixed;
    bottom: 20px;
    right: -150px; /* Tombol disembunyikan di luar layar kanan */
    background-color: #3498db;
    color: #ffffff;
    padding: 8px 16px; /* Mengurangi padding agar tombol lebih kecil */
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px; /* Mengurangi ukuran teks */
    font-weight: 600; /* Membuat teks sedikit tebal */
    transition: right 1s; /* Efek transisi untuk mengubah posisi horizontal */
}

/* CSS untuk hover efek */
#hubungi-kami:hover {
    background-color: #2980b9;
}


.header-section {
    position: relative;
    color: #fff;
    padding: 40px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/metodepembayaranbg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5); /* Sesuaikan nilai brightness sesuai keinginan Anda */
    z-index: -1; /* Letakkan di belakang teks */
}

 /* Gaya untuk card metode pembayaran */
 .payment-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-bottom: 16px;
}

.payment-card h3 {
    color: #1a202c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.payment-card p {
    color: #4a5568;
    margin-bottom: 6px;
}

.sub-payment-method {
    margin-left: 20px;
}