:root{
    --hijau-tua: #1b5e3b;
    --hijau: #2e7d32;
    --emas: #c9a227;
    --krem: #faf7f0;
}
body{
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
}
h1,h2,h3,h4,.brand-title{
    font-family: 'Merriweather', serif;
}
a{ text-decoration:none; }

/* Topbar */
.topbar{
    background: var(--hijau-tua);
    color: #fff;
}

/* Navbar */
.brand-logo{
    width: 46px;height:46px;border-radius:50%;
    background: linear-gradient(135deg,var(--hijau),var(--hijau-tua));
    color:#fff;display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:1.2rem;flex-shrink:0;
}
.navbar .nav-link{
    font-weight:500;color:#333;margin:0 8px;
}
.navbar .nav-link.active,.navbar .nav-link:hover{
    color: var(--hijau-tua);
}

/* Hero */
.hero{
    background: linear-gradient(135deg, var(--hijau-tua) 0%, var(--hijau) 100%);
    color:#fff;
    padding: 90px 0;
    position:relative;
    overflow:hidden;
}
.hero::after{
    content:"";
    position:absolute;inset:0;
    background: radial-gradient(circle at 80% 30%, rgba(201,162,39,0.25), transparent 60%);
}
.hero h1{
    font-weight:700;
    font-size: 2.6rem;
}
.hero .lead{
    font-size:1.15rem;
    color: rgba(255,255,255,.9);
}
.btn-emas{
    background: var(--emas); color:#fff; border:none;
    font-weight:600;
}
.btn-emas:hover{ background:#b3901f; color:#fff; }
.btn-outline-light-custom{
    border:1px solid #fff;color:#fff;font-weight:600;
}
.btn-outline-light-custom:hover{ background:#fff;color:var(--hijau-tua); }

/* Section title */
.section-title{
    text-align:center;margin-bottom: 3rem;
}
.section-title .kicker{
    color: var(--hijau);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:.85rem;
}
.section-title h2{
    font-weight:700;
    margin-top:.4rem;
}
.section-title .underline{
    width:60px;height:4px;background:var(--emas);
    margin: 12px auto 0;border-radius:2px;
}

/* Cards */
.card-custom{
    border:none;border-radius:14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
    height:100%;
}
.card-custom:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.icon-box{
    width:56px;height:56px;border-radius:12px;
    background: rgba(46,125,50,.1);
    color: var(--hijau-tua);
    display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;margin-bottom:1rem;
}

/* Stats */
.stats-section{
    background: var(--krem);
    padding: 60px 0;
}
.stat-number{
    font-size:2.2rem;font-weight:700;color:var(--hijau-tua);
}

/* Berita */
.badge-kategori{
    background: var(--emas);color:#fff;font-weight:500;
}
.news-date{
    color:#888;font-size:.85rem;
}

/* Galeri */
.galeri-item{
    height:220px;border-radius:12px;overflow:hidden;
    display:flex;align-items:center;justify-content:center;
    color:#fff;font-weight:600;text-align:center;padding:1rem;
    position:relative;
}

/* Guru */
.guru-avatar{
    width:80px;height:80px;border-radius:50%;
    background: linear-gradient(135deg,var(--hijau),var(--hijau-tua));
    color:#fff;display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:1.4rem;margin:0 auto 1rem;
}

/* Footer */
.footer-site{
    background: #14261c;
}
.footer-links li{ margin-bottom:.5rem; }
.footer-links a{ color: rgba(255,255,255,.65); }
.footer-links a:hover{ color: var(--emas); }
.text-light-50{ color: rgba(255,255,255,.65) !important; }

/* Page header (banner halaman dalam) */
.page-header{
    background: linear-gradient(135deg, var(--hijau-tua) 0%, var(--hijau) 100%);
    color:#fff;padding: 60px 0;
}
.page-header h1{ font-weight:700; }
.breadcrumb-custom a{ color: rgba(255,255,255,.8); }
.breadcrumb-custom span{ color: #fff; }

@media (max-width:768px){
    .hero{ padding: 60px 0; text-align:center; }
    .hero h1{ font-size:2rem; }
}
