    /* CSS Revisi - Idealnya dipindah ke file style.css */
    :root {
        --primary-color: #607D3B;   /* Hijau Zaitun Tua */
        --secondary-color: #D4A373; /* Cokelat Muda Kayu/Tanah Liat */
        --text-color: #3E2723;      /* Cokelat Tua Pekat (untuk teks utama) */
        --light-gray: #F5F5F5;      /* Abu-abu Sangat Muda/Putih Gading */
        --dark-gray: #6D4C41;       /* Cokelat Sedang (untuk teks sekunder/detail) */
        --white-color: #ffffff;
        --font-primary: 'Poppins', sans-serif;
        --font-secondary: 'Merriweather', serif;
        --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        --border-radius: 10px;
    }

    body {
        font-family: var(--font-primary);
        margin: 0;
        padding: 0;
        background-color: var(--light-gray);
        color: var(--text-color);
        line-height: 1.7;
        overflow-x: hidden; /* Mencegah scroll horizontal */
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

    /* --- Header --- */
    .site-header {
    /* HAPUS/KOMENTARI baris background solid sebelumnya: */
    background: var(--white-color);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* transition: background-color 0.3s ease; */ /* <--- COBA KOMENTARI ATAU HAPUS BARIS INI */
}

  

.site-header .container { /* Ini adalah div yang membungkus logo dan navigasi */
    position: relative; /* Membuat stacking context baru */
    z-index: 2;         /* Pastikan lebih tinggi dari .hexagon-animation-container */
}
/* --- CSS untuk Animasi Heksagon --- */
.hexagon-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Agar partikel tidak keluar dari header */
    z-index: 1;      /* Di atas background header, tapi di bawah konten (.site-header .container) */
    pointer-events: none; /* Agar tidak mengganggu klik pada elemen header */
}

.hexagon-shape {
    position: absolute;
    width: 60px;  /* Ukuran dasar heksagon */
    height: 69px; /* Ukuran dasar heksagon */
    
    /* WARNA DALAM HEXAGON */
    background-color: #8FBC8F; /* Warna Sea Green untuk bagian dalam */
    
    /* GARIS LUAR HEXAGON */
    border: 2px solid #607D3B; /* Warna primary Anda (Hijau Zaitun Tua) untuk garis luar */
    
    /* EFEK GLOWING (berasal dari warna dalam atau warna garis) */
    /* Opsi A: Glow dari warna dalam (#8FBC8F) */
    box-shadow: 0 0 7px rgba(143, 188, 143, 0.7),  /* Glow #8FBC8F lebih pekat & dekat */
                0 0 12px rgba(143, 188, 143, 0.5), /* Glow #8FBC8F menengah */
                0 0 18px rgba(143, 188, 143, 0.3); /* Glow #8FBC8F lebih menyebar */
    
    /* Opsi B: Glow dari warna garis (#607D3B) - jika Anda lebih suka ini, hapus Opsi A
    box-shadow: 0 0 7px rgba(96, 125, 59, 0.7),
                0 0 12px rgba(96, 125, 59, 0.5),
                0 0 18px rgba(96, 125, 59, 0.3);
    */
    
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    
    opacity: 0; /* Mulai dengan transparan, akan diubah oleh animasi */
    animation-name: flyAndRotateHexagon;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Variasi untuk setiap partikel heksagon */
/* Kita akan membuat semua heksagon menggunakan warna primary untuk konsistensi glow */
/* Jadi, kita hapus override border-color di sini, atau sesuaikan jika ingin variasi glow */
.hexagon-shape:nth-child(1) {
    width: 40px; height: 46px;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.hexagon-shape:nth-child(2) {
    width: 70px; height: 80px;
    left: 30%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.hexagon-shape:nth-child(3) {
    width: 50px; height: 58px;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.hexagon-shape:nth-child(4) {
    width: 30px; height: 35px;
    left: 70%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.hexagon-shape:nth-child(5) {
    width: 80px; height: 92px;
    left: 90%;
    animation-duration: 20s;
    animation-delay: 3s;
}

/* Keyframes untuk animasi partikel heksagon - Opacity sudah cukup tinggi */
@keyframes flyAndRotateHexagon {
    0% {
        transform: translateY(100%) translateX(-50px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.9; /* Sudah cukup tinggi agar terlihat jelas */
    }
    80% {
        opacity: 0.9; /* Tetap terlihat jelas */
    }
    100% {
        transform: translateY(-150%) translateX(50px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo a {
        text-decoration: none;
        color: var(--primary-color); /* Sudah benar, warna ini (Hijau Zaitun Tua) akan kontras dengan gradient terang */
        font-size: 28px; /* Ukuran font logo teks, bisa disesuaikan dengan .logo span jika pakai span */
        font-weight: 700;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 50px; /* Disesuaikan dari 45px untuk konsistensi dengan contoh animasi */
        width: auto;
        margin-right: 10px;
        transform: scale(1.4); /* Perbesar logo 20% */
  transition: transform 0.3s ease-in-out;

    }

    /* Jika Anda menggunakan <span> untuk teks logo di HTML, gunakan ini:
    .logo span {
        font-size: 24px;
        line-height: 1;
        color: var(--primary-color);
    }
    Jika tidak, dan teks logo langsung di dalam <a>, styling .logo a sudah cukup.
    */

    .main-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .main-navigation li {
        margin-left: 25px;
    }

    .main-navigation a {
        text-decoration: none;
        color: var(--text-color); /* Sudah benar, Cokelat Tua Pekat akan kontras */
        font-weight: 600;
        padding-bottom: 5px;
        position: relative;
        transition: color 0.3s ease;
    }

    .main-navigation a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--secondary-color); /* Cokelat Muda Kayu, akan kontras */
        transition: width 0.3s ease;
    }

    .main-navigation a:hover,
    .main-navigation li.current-menu-item a {
        color: var(--primary-color); /* Hijau Zaitun Tua, akan kontras */
    }
    .main-navigation a:hover::after,
    .main-navigation li.current-menu-item a::after {
        width: 100%;
    }

    /* Burger Menu untuk Mobile */
    .menu-toggle {
        display: none; /* Sembunyikan di desktop */
        font-size: 24px;
        background: none;
        border: none;
        color: var(--primary-color); /* Hijau Zaitun Tua, akan kontras */
        cursor: pointer;
    }

    /* --- Hero Section --- */
    .hero-section {
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/img/desa1.jpg') no-repeat center center/cover;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white-color);
        padding: 20px;
        position: relative;
    }
    .hero-content {
        max-width: 700px;
    }
    .hero-content h1 {
        font-family: var(--font-secondary);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        animation: fadeInDown 1s ease-out;
    }
    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 30px;
        line-height: 1.8;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
        animation: fadeInUp 1s ease-out 0.5s;
        animation-fill-mode: backwards;
    }
    .btn {
        text-decoration: none;
        background-color: var(--secondary-color);
        color: #000000; /* Teks tombol utama akan menggunakan warna primary (Hijau Zaitun Tua) */
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .btn:hover {
        background-color: var(--primary-color);
        color: var(--white-color); /* Teks tombol saat hover menjadi putih */
        transform: translateY(-3px);
    }

    /* --- Section Styling Umum --- */
    .section {
        padding: 70px 0;
    }
    .section-bg {
        background-color: var(--white-color);
    }
    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }
    .section-title h2 {
        font-family: var(--font-secondary);
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: inline-block;
    }
    .section-title h2::after {
        content: '';
        display: block;
        width: 70px;
        height: 3px;
        background: var(--secondary-color);
        margin: 10px auto 0;
    }
    .section-title p {
        font-size: 1.1rem;
        color: var(--dark-gray);
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- About Section --- */
    .about-section .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }
    .about-image {
        flex: 1;
        min-width: 300px;
    }
    .about-image img {
        width: 100%;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    .about-content {
        flex: 1.2;
        min-width: 300px;
    }
    .about-content h3 {
        font-family: var(--font-secondary);
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    .about-content .highlight {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* --- Explore Links Section --- */
    .explore-links .link-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    .explore-card {
        background: var(--white-color);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.4s ease;
        display: flex;
        flex-direction: column;
    }
    .explore-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    .explore-card-image {
        height: 200px;
        overflow: hidden;
    }
    .explore-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .explore-card:hover .explore-card-image img {
        transform: scale(1.1);
    }
    .explore-card-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .explore-card-content h4 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 10px;
    }
    .explore-card-content p {
        font-size: 0.95rem;
        color: var(--dark-gray);
        margin-bottom: 20px;
        flex-grow: 1;
    }
    .explore-card-content .btn-explore {
        text-decoration: none;
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 500;
        transition: background-color 0.3s ease;
        align-self: flex-start;
    }
    .explore-card-content .btn-explore:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    /* --- Highlights/News Section --- */
    .highlights-section {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
    .highlights-section .section-title h2 {
        color: var(--white-color);
        text-shadow: 1px 1px 2px #000000;
    }
    .highlights-section .section-title p {
        color: rgb(0 0 0 / 90%);
        text-shadow: 1px 1px 2px rgb(255 255 255 / 100%);
    }
    .highlight-item {
        background: rgba(255,255,255,0.1);
        padding: 25px;
        border-radius: var(--border-radius);
        margin-bottom: 20px;
        transition: background-color 0.3s ease;
    }
    .highlight-item:hover {
         background: rgba(255,255,255,0.2);
    }
    .highlight-item h5 {
        font-family: var(--font-secondary);
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: 10px;
        color: var(--secondary-color);
    }
    .highlight-item p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .highlight-item .read-more {
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 600;
    }
    .highlight-item .read-more:hover {
        text-decoration: underline;
    }

    /* --- Call to Action Section --- */
    .cta-section {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/desa3.jpg') no-repeat center center/cover;
        padding: 80px 0;
        text-align: center;
        color: var(--white-color);
    }
    .cta-section h3 {
        font-family: var(--font-secondary);
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Footer --- */
    .site-footer {
        background-color: #222;
        color: #aaa;
        padding: 50px 0 20px;
        font-size: 0.9rem;
    }
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-column h5 {
        color: var(--white-color);
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-family: var(--font-primary);
        font-weight: 600;
    }
    .footer-column p, .footer-column ul, .footer-column li {
        margin-bottom: 10px;
    }
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    .footer-column a {
        color: #f1c40f;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-column a:hover {
        color: #ffe600;
    }
    .social-links a {
        margin-right: 10px;
        font-size: 1.5rem; /* Ukuran ikon sosial media */
    }
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #444;
    }
    .footer-bottom p {
        margin: 0;
    }

    /* Animasi Keyframes (HANYA SATU KALI untuk fadeInDown dan fadeInUp) */
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* --- Responsive --- */
    @media(max-width: 992px) {
        .hero-content h1 { font-size: 2.8rem; }
        .hero-content p { font-size: 1.1rem; }
        .section-title h2 { font-size: 2rem; }
        .about-section .container { flex-direction: column; }
    }

    @media(max-width: 768px) {
        .main-navigation {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 66px; /* Disesuaikan dengan padding header 10px + tinggi logo ~50px, mungkin perlu sedikit penyesuaian lagi */
            left: 0;
            width: 100%;
            background: var(--white-color); /* Menu dropdown mobile tetap putih agar kontras */
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        .main-navigation.active {
            display: flex;
        }
        .main-navigation li {
            margin: 10px 20px;
            text-align: center;
        }
        .menu-toggle {
            display: block;
        }

        .hero-section { height: 75vh; }
        .hero-content h1 { font-size: 2.2rem; }
        .hero-content p { font-size: 1rem; }
        .btn { padding: 12px 25px; font-size: 1rem;}

        .explore-links .link-grid {
            grid-template-columns: 1fr;
        }
         .highlights-section .link-grid {
            grid-template-columns: 1fr;
        }
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-column ul {
            padding-left: 0;
        }
        .social-links { text-align: center; }

        /* Penyesuaian padding header untuk mobile jika menggunakan logo */
        .site-header {
            padding: 8px 0;
        }
        .logo img {
            height: 40px;
            transform: scale(1.2); /* Perbesar logo 20% */
  transition: transform 0.3s ease-in-out;
        }
        .logo a { /* Jika teks logo masih ada di mobile */
            font-size: 24px; /* Atau sesuaikan agar pas */
        }
        /* Jika ada .logo span, sesuaikan juga font-size nya di sini */
        .main-navigation.active {
             top: 56px; /* Disesuaikan: padding 8px + tinggi logo 40px = 48px. Beri sedikit ruang. Tes lagi. */
        }
    }