/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Merriweather:wght@400;700&display=swap');

/* Reset & Pengaturan Dasar */
body {
    margin: 0;
    font-family: 'Merriweather', serif;
    background-color: #F8F8F4;
    color: #333;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigasi */
.site-header { background-color: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.05); padding: 15px 0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700; color: #1A3A5A; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.main-nav li { margin-left: 25px; }
.main-nav a { font-family: 'Montserrat', sans-serif; text-decoration: none; color: #1A3A5A; font-weight: 600; }
.main-nav a:hover { color: #D4AF37; }

/* Hero Section */
.hero-section {
    background-color: #2D5A2D; /* Latar Hijau Tua */
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
.hero-section h1 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}
.hero-section p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
}
.cta-button {
    background-color: #D4AF37;
    color: #1A3A5A;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: inline-block;
}

/* Featured Posts */
.featured-posts { padding: 80px 0; }
.featured-posts h2 { text-align: center; font-size: 2.5em; margin-bottom: 50px; color: #1A3A5A; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); overflow: hidden; }
.post-card img { width: 100%; height: auto; display: block; }
.post-card h3 { padding: 20px 20px 0 20px; margin: 0; color: #1A3A5A; }
.post-card p { padding: 10px 20px; }
.post-card a { display: block; padding: 0 20px 20px 20px; text-decoration: none; color: #2D5A2D; font-weight: bold; }

/* Footer */
.site-footer { background: #1A3A5A; color: #EAEAEA; text-align: center; padding: 30px 0; }