/* Atur font dasar untuk seluruh halaman */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Styling untuk bagian header utama */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(135deg, #1A4D2E, #4F6D54); /* Gradasi Hijau */
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Container untuk logo dan judul */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak antara logo dan judul */
}

/* Styling untuk logo */
.kpn-logo {
    height: 60px; /* Ukuran tinggi logo */
    width: auto;
}

/* Styling untuk judul KPN */
.logo-container h1 {
    font-size: 1.8rem;
    margin: 0;
}

/* Styling untuk navigasi menu */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Jarak antar menu */
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #FFC94A; /* Warna kuning untuk efek hover modern */
}

/* Konten utama */
.main-content {
    padding: 20px;
}
.product-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.product-item h3 {
    color: #1A4D2E;
    margin-top: 0;
}
.call-to-action {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #555;
}
/* Styling untuk postingan blog */
.blog-post {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.blog-post h3 {
    color: #1A4D2E;
    margin-top: 0;
}
.blog-post .post-meta {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 10px;
}
.blog-post a {
    color: #4F6D54;
    text-decoration: none;
    font-weight: bold;
}
.blog-post a:hover {
    text-decoration: underline;
}
/* Styling untuk halaman kontak */
.contact-info-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-basis: 45%; /* Lebar card */
    min-width: 300px;
}
.contact-card h3 {
    color: #1A4D2E;
    border-bottom: 2px solid #4F6D54;
    padding-bottom: 10px;
}

/* Styling untuk form */
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Agar padding tidak menambah lebar */
}
.contact-form button {
    background-color: #4F6D54;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #1A4D2E;
}
/* Styling untuk bagian hero (sambutan) */
/*.hero-section {
/*    text-align: center;
/*    padding: 60px 20px;
/*    background: linear-gradient(to right, #4F6D54, #1A4D2E);
/*    color: white;
/*    border-radius: 8px;
/*    margin-bottom: 20px;
/*}
/*.hero-section h2 {
/*    font-size: 2.5rem;
/*    margin-bottom: 10px;
/*}
/*.hero-section p {
/*    font-size: 1.2rem;
/*    max-width: 700px;
/*    margin: 0 auto 20px;
/*}
/* Styling untuk bagian hero (sambutan) */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    /* Tambahan kode untuk gambar latar belakang */
    background-image: url('http://googleusercontent.com/image_generation_content/0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Tambahkan overlay agar teks lebih mudah dibaca */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Gelapkan latar belakang */
    z-index: 1;
}

/* Pastikan konten (teks dan tombol) berada di atas overlay */
.hero-section h2,
.hero-section p,
.hero-section .cta-button {
    position: relative;
    z-index: 2;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Styling untuk tombol call-to-action (CTA) */
.cta-button {
    display: inline-block;
    background-color: #FFC94A; /* Warna kuning yang modern */
    color: #1A4D2E;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #FFB300;
}

/* Styling untuk ringkasan 'Tentang Kami' */
.about-summary {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}
.about-summary h3 {
    color: #1A4D2E;
}
.sejarah-paragraf {
    text-align: justify;
    line-height: 1.6; /* Membuat jarak antar baris lebih nyaman dibaca */
    margin-bottom: 20px;
}
footer {
    background-color: #333;
    color: #ccc;
    text-align: center; /* Ini yang membuat teks di tengah */
    padding: 15px;
    font-size: 0.9rem;
    margin-top: auto;
}
/* Styling untuk bagian-bagian konten */
.content-section {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.content-section h3 {
    color: #1A4D2E;
}

/* Styling untuk tabel kepengurusan */
.organization-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.organization-table th,
.organization-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.organization-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}
.organization-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.organization-table tbody tr:hover {
    background-color: #f1f1f1;
}
.note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}
/* Styling untuk teks selamat datang di hero section */
 .hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: transparent; /* Membuat teks awal transparan */
    background: linear-gradient(to right, #1A4D2E, #4F6D54); /* Membuat gradasi warna hijau */
    -webkit-background-clip: text; /* Mengaplikasikan gradasi sebagai warna teks */
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Efek teks timbul */
    letter-spacing: 1px; /* Sedikit jarak antar huruf untuk keterbacaan */
 }

 /* Styling untuk sub-teks di hero section */
 .hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #2E8B57; /* Warna hijau yang lebih terang */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Efek teks timbul yang lebih halus */
 }
 /* Styling untuk bagian hero (sambutan) */
.hero-section {
   text-align: center;
   padding: 60px 20px;
   color: white;
   border-radius: 8px;
   margin-bottom: 20px;
   background-image: url('<image-tokens-bardstorage://RESPONSE_DATA:00063d2db4bb8085092a51f4ec24a31ee821bddaa38b12a0:951946111187405786563e1c9a07bdce26d:0:>');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
   overflow: hidden;
}

/* Tambahkan overlay agar teks lebih mudah dibaca */
.hero-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4); /* Gelapkan latar belakang */
   z-index: 1;
}

/* Pastikan konten (teks dan tombol) berada di atas overlay */
.hero-section h2,
.hero-section p,
.hero-section .cta-button {
   position: relative;
   z-index: 2;
}

.hero-section h2 {
   font-size: 2.5rem;
   margin-bottom: 10px;
   color: transparent; /* Membuat teks awal transparan */
   background: linear-gradient(to right, #1A4D2E, #4F6D54); /* Membuat gradasi warna hijau */
   -webkit-background-clip: text; /* Mengaplikasikan gradasi sebagai warna teks */
   background-clip: text;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Efek teks timbul */
   letter-spacing: 1px; /* Sedikit jarak antar huruf untuk keterbacaan */
}

/* Styling untuk sub-teks di hero section */
.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #1B1E23; /* Mengubah warna teks menjadi Hitam */
    -webkit-text-stroke: 0.7px #1B1E23; /* Garis luar teks untuk browser berbasis WebKit */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Efek teks timbul yang lebih halus */
}

/* Styling untuk tombol call-to-action (CTA) */
.cta-button {
   display: inline-block;
   background-color: #FFC94A; /* Warna kuning yang modern */
   color: #1A4D2E;
   padding: 12px 25px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: bold;
   transition: background-color 0.3s ease;
}
.cta-button:hover {
   background-color: #FFB300;
}

/* Styling untuk ringkasan 'Tentang Kami' */
.about-summary {
   background-color: white;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0,0,0,0.05);
   text-align: center;
}
.about-summary h3 {
   color: #1A4D2E;
}