/* Reset dan Font Dasar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
}

/* Bagian Header */
header {
    background: #006400; /* Hijau Madrasah */
    color: #fff;
    border-bottom: #f2a900 4px solid;
    padding: 10px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: #f2a900;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    header nav {
        margin-top: 15px;
    }
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}




/* Bagian Utama */
.hero {
    background: #fff;
    padding: 40px 20px;
    margin-top: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.main-content {
    width: 65%;
}

.sidebar {
    width: 30%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    align-self: flex-start;
}

.card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-left: 4px solid #006400;
}

/* Bagian Footer */
footer {
    padding: 20px;
    margin-top: 40px;
    color: #ffffff;
    background-color: #333;
    text-align: center;
}

@media (max-width: 600px) {
    article {
        flex-direction: column; /* Gambar pindah ke atas teks saat di HP */
    }
    article div {
        max-width: 100% !important;
        width: 100%;
    }
    article img {
        height: 200px;
    }
}

.card-green { background: #e8f5e9 !important; border-left: 5px solid #2e7d32 !important; }
.card-yellow { background: #fffde7 !important; border-left: 5px solid #fbc02d !important; }
.btn { display: inline-block; padding: 10px 15px; background: #006400; color: #fff; text-decoration: none; border-radius: 5px; margin-top: 10px; }
input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
button { padding: 10px 20px; background: #006400; color: white; border: none; cursor: pointer; }

.btn-readmore {
    display: inline-block;
    margin-top: 10px;
    color: #006400;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.btn-readmore:hover {
    text-decoration: underline;
}

article.card h2 {
    font-size: 22px;
    margin-bottom: 5px;
}