/* --- Variables Reuse --- */
:root {
    --primary-color: #5D8A31;
    --secondary-color: #C4A57B;
    --accent-color: #FFD700;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white-color: #fff;
    --font-family: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.page-content { padding-top: 100px; }
.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h1 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }

/* --- Header & Footer (Reuse) --- */
.main-header {
    background: rgba(255, 255, 255, 0.95); padding: 15px 0; position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }

/* --- Logo Wrapper --- */
.logo {
    display: flex;           /* Menjajarkan logo dan teks menyamping */
    align-items: center;     /* Posisi vertikal di tengah */
    text-decoration: none;    /* Hilangkan garis bawah link */
}

.logo img {
    height: 50px;
    /* Pastikan tidak ada margin-right/bottom yang tidak perlu */
}

/* --- Styling Teks Logo (Font Menarik) --- */
.logo-text {
    font-family: 'Oswald', sans-serif; /* Font Kondens/Resmi */
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color); /* Warna Hijau Pramuka */
    margin-left: 12px;           /* Jarak antara gambar dan teks */
    line-height: 1;              /* Supaya sejajar dengan gambar */
    letter-spacing: 1px;          /* Jarak huruf sedikit renggang agar elegan */
    white-space: nowrap;         /* Mencegah teks turun ke bawah */
}

/* Responsif: Jika di Mobile, Sembunyikan teks agar tidak tabrakan dengan hamburger menu */
@media (max-width: 991px) {
    .logo-text {
        display: none;
    }
}

.main-nav ul { list-style: none; display: flex; }
.main-nav ul li { margin-left: 25px; }
.main-nav ul li a { text-decoration: none; color: var(--dark-color); font-weight: 500; }
.main-nav ul li a:hover { color: var(--primary-color); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; background-color: var(--dark-color); margin: 5px 0; }

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-media a {
    margin-right: 15px;
}

.social-media img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social-media a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* --- Program Kerja Styles --- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.program-header {
    padding: 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-year {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

/* Badge Status */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}
.status-perencanaan { background-color: #7f8c8d; } /* Abu-abu */
.status-berjalan { background-color: #f39c12; } /* Kuning/Oranye */
.status-selesai { background-color: var(--primary-color); } /* Hijau */

.program-body {
    padding: 20px;
    flex-grow: 1;
}

.program-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.program-bidang {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}