/* assets/css/style.css */


/* 1. Reset & Base Typography */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,700;0,800;1,400&display=swap');

:root {
    --bali-blue: #1e3a8a;
    --bali-yellow: #f59e0b;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/*megamenu*/

.megamenu-content {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            transform: translateY(15px);
            opacity: 0;
            visibility: hidden;
        }
        .group:hover .megamenu-content {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

/* 2. Styling Konten WYSIWYG (The "Prose" Engine) */
/* Kita membuat class khusus agar semua tag di dalam konten JSON terformat otomatis */
.entry-content {
    line-height: 1.8;
    color: #374151;
    font-size: 1.125rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h1, .entry-content h2, .entry-content h3 {
    font-weight: 800;
    color: var(--bali-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.entry-content h2 { font-size: 1.875rem; border-left: 4px solid var(--bali-yellow); padding-left: 1rem; }
.entry-content h3 { font-size: 1.5rem; }

.entry-content ul, .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content ul { list-style-type: disc; }
.entry-content ol { list-style-type: decimal; }

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--bali-yellow);
    background: #fffbeb;
    padding: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    border-radius: 0 1rem 1rem 0;
}

.entry-content img {
    border-radius: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.entry-content a {
    color: var(--bali-blue);
    text-decoration: underline;
    font-weight: 700;
}