body {
    background-image: url('background.jpg'); /* Ganti dengan path gambar background kamu */
    background-size: cover; /* Atau sesuaikan dengan kebutuhan */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ini membuat background tetap saat digulir */
    margin: 0;
    padding: 0;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    padding: 20px;
}

h1, h2 {
    font-family: 'Pacifico', cursive;
    color: skyblue;
    font-style: italic;
    text-align: center;
    width: 75%; /* Menambahkan lebar 75% dari layar */
    margin: 0 auto; /* Memusatkan teks dalam kontainer */
}

h1 {
    font-size: 25px;
}

h2 {
    font-size: 20px; /* Menambahkan ukuran font untuk h2 */
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; /* Mengatur lebar logo-container menjadi 75% dari layar */
    margin: 0 auto; /* Memusatkan logo-container */
    margin-bottom: 10px;
}

.logo-container img {
    width: 80%; /* Lebar gambar 75% dari layar */
    max-height: 200px; /* Menentukan tinggi maksimum */
    height: auto; /* Tinggi otomatis untuk menjaga rasio aspek */
}

h3 {
    max-width: 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-align: left;
    color: skyblue;
    font-size: 17px; /* Larger size for DAFTAR KATALOG */
}

.catalog-list {
    max-width: 90%;
    margin: 0 auto;
    list-style-type: none;
    font-size: 20px;
    padding: 0;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.catalog-list li {
    font-size: 15px; /* Ukuran font yang lebih besar untuk item daftar */
    margin: 10px 0;
}

.catalog-list li a {
    color: white;
    text-decoration: none;
    display: block;
    background-color: rgba(0, 0, 0, 0.3); /* Warna biru dengan transparansi 30% */
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: left;
    width: calc(100% - 20px); /* Ensures buttons are the same width */
}

.catalog-list li a:hover {
    background-color: rgba(0, 0, 255, 0.5); /* Warna hijau dengan transparansi 75% */
}

.catalog-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.button-style {
    display: inline-block;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button-style:hover {
    background-color: green;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.3); /* Latar belakang tabel hitam dengan transparansi 30% */
}

table, th, td {
    border: 1px solid white; /* Garis batas berwarna putih */
}

th, td {
    padding: 8px;
    text-align: left;
    color: white; /* Teks berwarna putih */
    font-size: 15px;
}

th {
    background-color: rgba(0, 0, 255, 0.3); /* Latar belakang header biru dengan transparansi 30% */
}

.footer .social-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.footer .social-button.fb svg path {
    fill: #3b5998; /* Warna logo Facebook */
}

.footer .social-button.wa svg path {
    fill: #25D366; /* Warna logo WhatsApp */
}

.footer .social-button.ig svg path {
    fill: #E4405F; /* Warna logo Instagram */
}

.footer .social-button.tt svg path {
    fill: #010101; /* Warna logo TikTok */
}

.footer {
    display: flex;
    justify-content: center;
    gap: 20px; /* Jarak antar tombol */
}