/* ==================================================
   1. CORE VARIABLES & RESET
   ================================================== */
:root {
    --primary-blue: #004a99;
    --secondary-blue: #4A90E2;
    --dark-blue: #003366;
    --accent-gold: #d4af37;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 35px rgba(0, 74, 153, 0.15);
    --sidebar-width: 280px;
    --transition-speed: 0.3s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ==================================================
   2. SIDEBAR NAVIGATION
   ================================================== */
.sidebar {
    position: fixed; top: 0; left: 0;
    width: var(--sidebar-width); height: 100vh;
    background: white;
    box-shadow: 5px 0 25px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: transform var(--transition-speed) ease;
    padding: 2rem 1.5rem;
    display: flex; flex-direction: column;
}

.sidebar-header { text-align: center; margin-bottom: 2.5rem; }
.logo-wrapper {
    width: 60px; height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 1.8rem;
}
.sidebar-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary-blue); }

.nav-links { flex: 1; overflow-y: auto; }

.tab-button {
    background: none; border: none; width: 100%;
    padding: 14px 20px; text-align: left;
    font-size: 0.95rem; color: var(--text-light);
    border-radius: 12px; cursor: pointer;
    transition: all 0.3s; margin-bottom: 8px;
    display: flex; align-items: center; gap: 15px;
    font-weight: 500;
}

.tab-button i { width: 20px; text-align: center; transition: transform 0.3s; }

.tab-button:hover {
    background: #eef2f7; color: var(--primary-blue);
    transform: translateX(5px);
}
.tab-button:hover i { transform: scale(1.1); }

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 74, 153, 0.25);
}

.sidebar-footer { padding-top: 1.5rem; border-top: 1px solid #eee; }
.login-btn { color: var(--accent-gold); justify-content: center; font-weight: 600; border: 1px solid #eee; }
.login-btn:hover { border-color: var(--accent-gold); background: #fffcf0; }

/* ==================================================
   3. HERO SECTION & LAYOUT (DESKTOP DEFAULT)
   ================================================== */
.main-content { margin-left: var(--sidebar-width); min-height: 100vh; transition: margin 0.3s; }

.hero-section {
    position: relative; min-height: 650px;
    background-color: var(--primary-blue);
    color: white; 
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    padding-top: 80px; padding-bottom: 120px;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Standby Tengah */
    background: url('gereja.jpeg') center center / cover no-repeat;
    filter: blur(1px) brightness(0.9);
    opacity: 0.90;
    mix-blend-mode: overlay;
    transform: scale(1.05); 
    z-index: 0;
}

.hero-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0, 130, 255, 0.10) 0%, rgba(0, 74, 153, 0.10) 100%);
    z-index: 1;
}

/* LOGO DESKTOP */
.hero-logos-container {
    position: absolute; 
    top: 30px; left: 0; width: 100%;
    padding: 0 50px; 
    display: flex; justify-content: space-between; align-items: flex-start;
    z-index: 10; pointer-events: none;
}

.logo-corner {
    height: 90px; width: auto; 
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    pointer-events: auto;
    transition: transform 0.3s;
}
.logo-corner:hover { transform: scale(1.1); }

.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; width: 100%; }

/* PASTOR DESKTOP */
.pastors-hero-wrapper {
    display: flex; justify-content: center;
    gap: 40px; margin-bottom: 2.5rem; margin-top: 1rem;
}

.pastor-frame-container:first-child { position: relative; left: -20px; }
.pastor-frame-container:nth-child(2) { animation-delay: 2s; position: relative; left: 40px; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pastor-photo-circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--accent-gold), 0 10px 25px rgba(0,0,0,0.4);
    overflow: hidden;
    background: radial-gradient(circle, #fffde7 0%, #f0e5c8 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.pastor-frame-container:hover .pastor-photo-circle {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px var(--accent-gold), 0 0 25px rgba(212, 175, 55, 0.6);
}

.pastor-img-content { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* LABEL NAMA PASTOR DESKTOP */
.pastor-label {
    margin-top: -15px;
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    color: white;
    width: 150px; max-width: 150px;
    padding: 8px 5px;
    white-space: normal; line-height: 1.2; text-align: center;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 3; position: relative; border: 2px solid white;
    display: flex; align-items: center; justify-content: center;
    min-height: 40px;
}

.hero-content h1 {
    font-size: 3rem; line-height: 1.2; margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle { 
    font-size: 1.1rem; opacity: 0.95; margin-bottom: 3rem; 
    font-style: italic; font-weight: 300; letter-spacing: 0.5px;
}

.wave-shape { position: absolute; bottom: -5px; left: 0; width: 100%; line-height: 0; z-index: 5; }

/* ==================================================
   4. ANIMATIONS
   ================================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { opacity: 0; animation: fadeInUp 0.8s forwards ease-out; }
.pastors-hero-wrapper.fade-in-up { animation: fadeInUp 0.8s forwards ease-out; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ==================================================
   5. CONTENT COMPONENTS
   ================================================== */
.content-container { padding: 0 2rem 4rem; max-width: 1200px; margin: -60px auto 0; position: relative; z-index: 10; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 15px; }
.divider { width: 80px; height: 5px; background: var(--accent-gold); margin: 0 auto; border-radius: 3px; }

.modern-card {
    background: white; border-radius: 16px; padding: 2rem;
    box-shadow: var(--card-shadow); border-left: 5px solid var(--primary-blue);
    display: flex; flex-direction: column; gap: 0.8rem;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.modern-card.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); }
.card-date { font-size: 0.8rem; color: var(--accent-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.card-title { font-size: 1.3rem; color: var(--primary-blue); font-weight: 700; }
.card-meta { margin-top: 10px; border-top: 1px solid #eee; padding-top: 10px; font-size: 0.9rem; color: #666; display: flex; gap: 15px; }

.search-container { background: white; padding: 10px 20px; border-radius: 50px; box-shadow: var(--card-shadow); display: flex; align-items: center; gap: 15px; max-width: 500px; margin: 0 auto 30px; }
.search-container input { border: none; outline: none; flex: 1; font-size: 1rem; color: var(--text-dark); }
.search-container i { color: var(--primary-blue); }

.prayer-buttons-container { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.prayer-btn { padding: 12px 25px; border: 1px solid #eee; border-radius: 30px; background: white; cursor: pointer; transition: 0.3s; font-weight: 600; color: var(--text-light); box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.prayer-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,74,153,0.2); }

.prayer-card { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); margin-top: 2rem; position: relative; text-align: center; border: 1px solid rgba(0,0,0,0.05); }
.close-prayer-btn { position: absolute; top: 20px; right: 25px; background: none; border: none; font-size: 2.5rem; cursor: pointer; color: #ccc; transition: 0.3s; }
.close-prayer-btn:hover { color: var(--text-dark); transform: rotate(90deg); }

.toggle-language-wrapper { background: #f0f4f8; padding: 5px; border-radius: 50px; display: inline-flex; gap: 5px; margin: 20px 0; }
.lang-btn { border: none; background: none; padding: 10px 30px; border-radius: 25px; cursor: pointer; font-weight: 600; color: #888; transition: all 0.3s; }
.lang-btn.active { background: white; color: var(--primary-blue); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.prayer-text { white-space: pre-line; line-height: 2; font-size: 1.1rem; color: #444; max-width: 800px; margin: 0 auto; }

.chart-container { height: 400px; padding: 20px; }
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 10px; }
.stats-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.stats-table thead th { background-color: var(--primary-blue); color: white; padding: 18px 15px; text-align: left; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.stats-table tbody tr { border-bottom: 1px solid #eee; transition: background-color 0.2s; }
.stats-table tbody tr:nth-child(even) { background-color: #f9fbfd; }
.stats-table tbody tr:hover { background-color: #f0f7ff; }
.stats-table td { padding: 15px; color: #555; font-size: 0.95rem; }
.stats-table tfoot td { background-color: #eef2f7; font-weight: 700; padding: 18px 15px; color: var(--primary-blue); border-top: 2px solid var(--primary-blue); }

.pope-number { width: 50px; height: 50px; background: var(--accent-gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; flex-shrink: 0; box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4); }

.loading-spinner { text-align: center; color: #999; padding: 2rem; }
/* FOOTER */
.main-footer { text-align: center; padding: 10px 0; background: var(--primary-blue); color: white; margin-top: 4rem; }
.main-footer p { margin-bottom: 0; font-size: 0.8rem; }

/* === JADWAL MISA SPLIT === */
.jadwal-split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
.jadwal-column { display: flex; flex-direction: column; gap: 1.5rem; }
.jadwal-card { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 15px; border-left: 5px solid #ccc; transition: transform 0.3s; }
.jadwal-card:hover { transform: translateY(-5px); }
.jadwal-card.pusat { border-left-color: var(--primary-blue); background: #f0f7ff; }
.jadwal-card.stasi { border-left-color: var(--accent-gold); }
.j-icon { font-size: 1.8rem; color: var(--text-light); width: 50px; text-align: center; }
.jadwal-card.pusat .j-icon { color: var(--primary-blue); }
.jadwal-card.stasi .j-icon { color: var(--accent-gold); }
.j-info h4 { margin: 0; font-size: 1rem; color: var(--text-dark); }
.j-time { display: block; font-weight: 700; color: var(--primary-blue); margin-top: 5px; font-size: 1.1rem; }

/* === TPE VIEWER === */
.tpe-paper { background: white; padding: 3rem; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 8px; position: relative; border-top: 10px solid var(--primary-blue); }
.tpe-header { text-align: center; border-bottom: 2px double #eee; padding-bottom: 20px; margin-bottom: 30px; }
.tpe-header h2 { color: var(--primary-blue); margin-bottom: 5px; font-size: 1.8rem; text-transform: uppercase; letter-spacing: 1px; }
.tpe-meta { color: #666; font-style: italic; font-family: 'Playfair Display', serif; }
.tpe-content { font-family: 'Times New Roman', serif; font-size: 1.1rem; line-height: 1.8; color: #333; }
.tpe-section-block { margin-bottom: 2rem; }
.tpe-label { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; display: block; letter-spacing: 0.5px; }
.tpe-text { white-space: pre-wrap; }
.label-bacaan { color: #d35400; border-bottom: 1px solid #eee; padding-bottom: 5px; margin-bottom: 10px; }

/* ==================================================
   SEKRETARIAT & KOMSOS
   ================================================== */
.social-icons-container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.social-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); text-decoration: none; }
.social-btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.social-btn.fb { background: #1877F2; }
.social-btn.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.tt { background: #000000; }

.wa-grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 3rem; }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: white; padding: 12px 20px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 0.95rem; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3); transition: all 0.3s; }
.wa-btn:hover { background: #1ebd56; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(37, 211, 102, 0.5); }
.wa-btn i { font-size: 1.3rem; }

.forms-list { display: flex; flex-direction: column; }
.form-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 10px; background: white; border-bottom: 1px solid #eee; transition: 0.3s; cursor: pointer; }
.form-item:last-child { border-bottom: none; }
.form-item:hover { background: #f9fcff; }
.form-info { display: flex; align-items: center; gap: 15px; }
.form-name { font-weight: 500; color: #444; font-size: 1rem; }
.btn-preview-icon { color: #999; font-size: 1rem; transition: 0.3s; }
.form-item:hover .form-name { color: var(--primary-blue); }
.form-item:hover .btn-preview-icon { color: var(--primary-blue); }

.pastor-history-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.pastor-history-card { background: white; border-radius: 12px; box-shadow: var(--card-shadow); overflow: hidden; text-align: center; transition: transform 0.3s ease; border: 1px solid #eee; }
.pastor-history-card:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.ph-img-wrapper { width: 100%; height: 220px; background: #f4f7f6; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ph-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ph-info { padding: 15px; }
.ph-info h4 { color: var(--primary-blue); font-size: 1rem; margin-bottom: 5px; }
.ph-years { font-size: 0.85rem; color: #666; font-weight: 500; display: inline-block; background: #f0f7ff; padding: 4px 10px; border-radius: 20px; color: var(--primary-blue); }

/* MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 5000; display: none; justify-content: center; align-items: center; backdrop-filter: blur(3px); }
.pdf-modal { background: white; width: 90%; max-width: 850px; height: 90vh; display: flex; flex-direction: column; border-radius: 8px; box-shadow: 0 15px 50px rgba(0,0,0,0.3); overflow: hidden; }
.preview-toolbar { display: flex; justify-content: space-between; align-items: center; background: white; padding: 15px 20px; border-bottom: 1px solid #eee; }
.btn-toolbar.close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: #666; }
.btn-toolbar.close:hover { color: #000; }
.pdf-container { flex: 1; background: #525659; overflow: hidden; position: relative; }
iframe { border: none; display: block; }
.modal-footer { padding: 15px 20px; background: white; border-top: 1px solid #eee; display: flex; justify-content: flex-end; gap: 10px; }
.btn-action-grey { background: #6c757d; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-weight: 500; display: flex; align-items: center; gap: 5px; text-decoration: none; font-size: 0.9rem; }
.btn-action-blue { background: #007bff; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-weight: 500; display: flex; align-items: center; gap: 5px; text-decoration: none; font-size: 0.9rem; }
.btn-action-grey:hover { background: #5a6268; }
.btn-action-blue:hover { background: #0069d9; }

/* HAMBURGER MENU */
.hamburger-menu { position: fixed; top: 10px; left: 10px; width: 15px; height: 15px; z-index: 2001; display: none; flex-direction: column; justify-content: space-between; cursor: pointer; background: transparent; border: none; }
.hamburger-menu span { display: block; width: 100%; height: 2px; background-color: rgb(0, 17, 255); border-radius: 4px; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); transform-origin: left; box-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.hamburger-menu.active span { background-color: var(--primary-blue); }
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(0px, -3px); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(0px, 5px); }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(2px); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.overlay.active { opacity: 1; visibility: visible; }

/* ==================================================
   MOBILE RESPONSIVE (MEDIA QUERY) - PENGATURAN KHUSUS HP
   ================================================== */
@media (max-width: 768px) {
    .hamburger-menu { display: flex; }
    .main-content { margin-left: 0; }
    .sidebar { transform: translateX(-100%); box-shadow: none; }
    .sidebar.active { transform: translateX(0); box-shadow: 5px 0 25px rgba(0,0,0,0.2); }

    /* --- [PENGATURAN LOGO HP] --- */
    .hero-logos-container {
        /* [GESER ATAS/BAWAH] Logo */
        top: 20px; 
        
        /* [GESER KIRI/KANAN] Logo dari pinggir layar */
        padding: 0 20px; 
    }
    
    /* 1. LOGO KIRI (KEUSKUPAN) */
    .logo-corner.left {
        height: 50px; /* [UBESAR/KECIL LOGO] */
        margin-left: 16px; /* [GESER KIRI/KANAN INDIVIDUAL] */
    }

    /* 2. LOGO KANAN (PAROKI) */
    .logo-corner.right {
        height: 50px; /* [UBESAR/KECIL LOGO] */
        margin-right: 25px; /* [GESER KIRI/KANAN INDIVIDUAL] */
    }

    /* --- [PENGATURAN HERO SECTION HP] --- */
    .hero-section { min-height: 600px; padding-top: 120px; padding-bottom: 40px; }

    /* --- [PENGATURAN FOTO & NAMA PASTOR HP] --- */
    .pastors-hero-wrapper { 
        gap: 20px; /* Jarak antar Pastor kiri dan kanan */
        margin-bottom: 1.5rem; 
    }
    
    /* Container Pastor (Foto & Nama) */
    .pastor-frame-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* [PENTING] Ini bikin foto dan nama RATA TENGAH OTOMATIS */
        width: 140px; /* Lebar area pastor agar stabil */
    }

    .pastor-photo-circle { 
        /* [UBESAR/KECIL FOTO] */
        width: 85px; height: 90px; 
    }

    /* 3. PASTOR KIRI (RD. JOSEPH) */
    .pastor-frame-container:first-child { 
        left: 0; 
        /* [GESER KIRI/KANAN] Negatif = Kiri, Positif = Kanan */
        transform: translateX(-10px); 
        
        /* [GESER ATAS/BAWAH] */
        margin-top: 0px;
    } 

    /* 4. PASTOR KANAN (RD. MIKI) */
    .pastor-frame-container:nth-child(2) { 
        left: 0; margin-left: 0; animation-delay: 2s; 
        
        /* [GESER KIRI/KANAN] Positif = Kanan, Negatif = Kiri */
        transform: translateX(15px); 
        
        /* [GESER ATAS/BAWAH] */
        margin-top: 0px;
    }

    /* --- [STYLE KOTAK NAMA PASTOR HP] --- */
    .pastor-label {
        /* [JARAK NAMA DARI FOTO] */
        margin-top: 10px; 
        
        /* [LEBAR KOTAK NAMA] auto = menyesuaikan panjang nama */
        width: auto; 
        min-width: 100px; /* Lebar minimal */
        max-width: 100px; /* Batas lebar maksimal agar wrap kalau kepanjangan */
        
        /* [UKURAN HURUF NAMA] */
        font-size: 0.65rem; 
        
        padding: 5px 12px;
        background: linear-gradient(135deg, #d4af37, #b8860b);
        border: 1px solid rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        
        /* Agar teks panjang turun baris dengan rapi */
        white-space: normal; 
        line-height: 1.2;
    }

    /* --- [PENGATURAN KHUSUS NAMA PASTOR MIKI (KANAN) RATA KIRI] --- */
    .pastor-frame-container:nth-child(2) .pastor-label {
        text-align: center; /* PERMINTAAN USER: Rata Kiri */
        padding-left: px; /* Sedikit jarak dari kiri */
        width: 50px; /* Sedikit diperlebar agar muat */
    }

    /* --- [PENGATURAN JUDUL PAROKI HP] --- */
    .hero-content h1 { 
        font-size: 1.5rem; margin-top: 10px; line-height: 1.3;
    }
    
    .content-container { padding: 2rem 1.2rem 3rem; margin-top: -30px; }
    .jadwal-split-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .tpe-paper { padding: 1.5rem; }
    .tpe-header h2 { font-size: 1.4rem; }
    .social-btn { width: 50px; height: 50px; font-size: 1.5rem; }
    .pdf-modal { width: 100%; height: 100%; border-radius: 0; }
}