
        body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; background-color: #fff; }
        h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }
        .bg-gold-lopodo { background-color: #B59449; }
        .text-gold-lopodo { color: #B59449; }
        
       /* Update: Logo tetap melayang saat di-scroll */
        .logo-floating {
            position: fixed; /* Berubah dari absolute ke fixed */
            top: 0;
            left: 50px;
            background: white;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            z-index: 150; /* Pastikan di atas navbar */
            transition: all 0.3s ease;
        }

        /* Tambahkan efek saat di-scroll (opsional agar logo mengecil sedikit) */
        .logo-floating.scrolled {
            padding: 10px;
            left: 40px;
        }
        @media (max-width: 768px) {
            .logo-floating { left: 20px; padding: 10px; }
            .logo-floating img { h-12; }
        }

        /* Mobile Menu Animation */
        #mobile-menu {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
        }
        #mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        /* Hero Image Layout (Asymmetric) */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; }
        }
        /* Styling khusus tombol panah Swiper */
    .swiper-button-next, .swiper-button-prev {
        color: white !important;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        width: 50px !important;
        height: 50px !important;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 18px !important;
            font-weight: bold;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: #B59449;
            border-color: #B59449;
        }

        /* Menghaluskan pagination dot */
        .swiper-pagination-bullet-active {
            background: #B59449 !important;
        }

        /* Class untuk ScrollReveal (disembunyikan dulu sebelum di-reveal) */
        .reveal {
                transition: opacity 0.5s ease;
            }
        .swiper { width: 100%; height: 100%; border-radius: 1.5rem; }
        .swiper-slide { position: relative; overflow: hidden; }
        serif { font-family: 'Playfair Display', serif; }
        .gold-lopodo { color: #B59449; } /* Sesuaikan kode hex gold Anda */
        .bg-gold-lopodo { background-color: #B59449; }

        .filter-btn.active {
            background: #B59449;
            color: white;
            border-color: #B59449;
            box-shadow: 0 10px 20px rgba(181, 148, 73, 0.2);
        }

        .event-card {
            animation: fadeIn 0.5s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Pastikan modal benar-benar tersembunyi secara default */
        #eventModal.hidden {
            display: none;
        }

        /* Animasi Fade In */
        #eventModal {
            transition: opacity 0.3s ease-in-out;
        }

        #modalMainImage img {
            transition: opacity 0.2s ease-in-out;
        }
        body { font-family: 'Inter', sans-serif; }
        .serif { font-family: 'Playfair Display', serif; }
        /* Styling untuk konten dari Editor */
        .blog-content ul { list-style-type: disc; margin-left: 1.5rem; margin-bottom: 1.5rem; }
        .blog-content strong { font-weight: bold; color: #111; }
/* Jika menggunakan text-base di atas, set font-size di sini ke 1rem */
    .blog-content p { 
        margin-bottom: 1.25rem; 
        line-height: 1.6; 
        font-size: 1rem; /* Ini setara dengan text-base */
        color: #4b5563; 
    }
    
    .blog-content h2 { 
        font-size: 1.5rem; /* Ukuran heading juga dikecilkan sedikit */
        margin-top: 1.5rem; 
        margin-bottom: 0.75rem; 
    }
    /* Kontainer utama */
    .marquee-container {
        width: 100%;
        display: flex;
    }

    /* Jalur animasi */
    .marquee-track {
        display: flex;
        width: max-content;
        animation: scroll-left 35s linear infinite;
    }

    /* Definisi gerakan */
    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Berhenti saat kursor di atasnya */
    .marquee-track:hover {
        animation-play-state: paused;
    }