:root {
    --bg-color: #fcfcfc;
    --text-main: #2b2b2b;
    --text-muted: #595959;
    --accent-color: #bc4749; 
    --accent-light: #f2e8e8;
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Lora', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}


h1, h2, h3, .tagline, .scroll-indicator {
    font-family: var(--font-sans);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

p {
    margin-bottom: 1.5rem;
}


.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    background-color: #111; 
    color: #fff;
}

.hero-content {
    max-width: 800px;
}

.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a3a3a3;
    font-weight: 700;
}

.subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #cccccc;
    font-style: italic;
    margin-top: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow {
    font-size: 1.5rem;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}


.story-container {
    padding: 60px 0;
}


.text-block {
    max-width: 680px; 
    margin: 0 auto;
    padding: 0 20px;
}

.dropcap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 8px;
    color: var(--accent-color);
    font-family: var(--font-serif);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    max-width: 100px;
    margin: 60px auto;
}


.scr-chapter {
    margin-bottom: 100px;
}

.highlight-text {
    background-color: var(--accent-light);
    padding: 15px 20px;
    border-left: 4px solid var(--accent-color);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #333;
    margin-top: 30px;
}


.viz-container {
    max-width: 1100px; 
    margin: 50px auto 0 auto;
    padding: 0 20px;
}


.tableau-placeholder {
    width: 100%;
    height: 600px;
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    color: #888;
    font-weight: 700;
}


.site-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    margin: 0 10px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}


@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }
    .text-block { font-size: 16px; }
}

.kpi-container {
    display: flex;
    justify-content: center; /* Ubah ini agar terpusat sempurna */
    gap: 30px;
    max-width: 700px; /* Dipersempit agar 2 card tidak terlalu panjang */
    margin: 40px auto;
    padding: 0 20px;
}

.kpi-card {
    flex: 1;
    background: #ffffff;
    border-top: 4px solid var(--accent-color); /* Garis atas merah bata agar selaras dengan tema */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Bayangan lembut yang elegan */
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-5px); /* Efek interaktif saat dihover */
}

.kpi-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.kpi-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 3rem; /* Angka besar mencolok (Data Typography) */
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.kpi-desc {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Responsiveness untuk layar HP */
@media (max-width: 768px) {
    .kpi-container {
        flex-direction: column;
    }
    .kpi-value {
        font-size: 2.5rem;
    }
}

/* --- PORTRAIT / PIGORA PRESIDEN LAYOUT --- */
.title-with-portraits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Jarak antara foto dan judul */
    margin: 40px 0;
}

.main-title-box {
    flex: 1;
    max-width: 650px;
}

.main-title-box h1 {
    margin: 0 0 15px 0;
    font-size: 3rem; /* Sedikit dikecilkan agar proporsional dengan foto */
}

.portrait-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    flex-shrink: 0;
}

.portrait-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 0.5px solid white; /* Bingkai pigora warna merah bata */
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    margin-bottom: 15px;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1.4;
    text-align: center;
}

.author-name small {
    font-weight: 400;
    color: #a3a3a3;
    font-size: 0.8rem;
}

/* Responsiveness: Ubah layout menjadi vertikal berjejer jika dibuka di HP */
@media (max-width: 768px) {
    .title-with-portraits {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Mengubah susunan HP: Foto 1 - Foto 2 berdampingan, lalu Judul di bawah */
    .title-with-portraits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .portrait-box {
        width: 120px;
        margin: 0 auto;
    }
    
    .portrait-box img {
        height: 160px;
    }

    .main-title-box {
        grid-column: span 2;
        margin-top: 20px;
    }
    
    .main-title-box h1 {
        font-size: 2.2rem;
    }
}