/* =================================================
   HOME.CSS — GKJ Information System
   Theme  : Modern Minimalist (selaras content.css)
   Palette: Hitam & Putih
   Font   : DM Sans + DM Serif Display

   Variabel warna, radius, shadow, font, dan motion
   semuanya mengacu ke :root yang dideklarasikan
   di content.css — JANGAN duplikasi di sini.

   Sections:
   1.  Slider & Caption
   2.  Card Universal (index: Renungan, Galeri, Warta)
   3.  Jadwal Ibadah  (section.about)
   4.  QRIS
   5.  Pendeta Section
   6.  Warta & Galeri & Renungan Section (index)
   7.  Mobile (max-width: 768px)
================================================= */


/* =================================================
   1. SLIDER & CAPTION
================================================= */

/* Override padding global dari style.css */
section.slider {
    padding: 0;
    text-align: unset;
}

/* Override margin-bottom dari section h2::after di style.css */
section.slider h2::after {
    display: none;
}

.slider {
    position: relative;
    height: 480px;
    overflow: hidden;

}

.slides {
    display: flex;
    transition: transform .8s var(--ease);
    height: 100%;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;          /* FIX: cegah slide menyusut di flex container */
    position: relative;      /* FIX: containing block untuk .caption & ::after */
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: grayscale(100%) brightness(55%);
    display: block;
}

/* Overlay gelap — z-index 1 agar caption bisa di atasnya */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1;              /* FIX: eksplisit z-index */
}

/* Caption — z-index 2 agar di atas overlay */
.caption.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;              /* FIX: harus lebih tinggi dari ::after */
    width: 90%;
    max-width: 700px;

    /* Pastikan tidak dipengaruhi flex atau padding parent */
    pointer-events: none;
}

.caption.center h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 400;
    margin: 0;
    letter-spacing: -.5px;
    line-height: 1.2;
    color: #fff;
    animation: fadeUp .9s var(--ease) both;
}

/* Override section h2::after dari style.css — ganti dengan dekorasi sendiri */
.caption.center h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 2px;
    background: rgba(255, 255, 255, .7);
    margin: 16px auto 0;
    border-radius: var(--r-pill);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 22px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: background var(--t-fast),
                transform var(--t-fast),
                border-color var(--t-fast);
}

.dots span.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

/* Prev / Next */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, .12);
    color: white;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background var(--t-fast),
                color var(--t-fast),
                border-color var(--t-fast);
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover,
.next:hover {
    background: white;
    color: var(--c-black);
    border-color: white;
    transform: translateY(-50%);
    opacity: 1;
}


/* =================================================
   2. CARD UNIVERSAL
   Dipakai: Renungan, Galeri, Warta di index.php
   Struktur: div.card > img + div.(content-wrapper)
================================================= */

.dashboard-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.card {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-border);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid) var(--ease),
                box-shadow var(--t-mid) var(--ease),
                border-color var(--t-mid);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-border-dark);
}

.card > img,
.card img:first-child {
    width: 100%;
    height: var(--card-img-h);
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin: 0;
    flex-shrink: 0;
    transition: transform var(--t-mid) var(--ease);
}

.card:hover > img,
.card:hover img:first-child {
    transform: scale(1.04);
}

.card .renungan-content,
.card .galeri-content,
.card .warta-content,
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card > .komisi-badge  { padding: 16px 20px 0; }
.card > .warta-date    { padding: 0 20px; }
.card > h3             { padding: 0 20px; }
.card > small          { padding: 0 20px; }
.card > p              { padding: 0 20px; }
.card > a:last-child   { padding: 0 20px 20px; }

.card small,
.card .renungan-content small,
.card .galeri-content small,
.card .warta-content small {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--c-muted);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.card h3,
.card .renungan-content h3,
.card .galeri-content h3,
.card .warta-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
    color: var(--c-black);
    line-height: 1.4;
    letter-spacing: -.2px;
    /* Tanpa min-height — tombol di bawah via flex:1 pada <p> */
}

/* Override section h2::after dari style.css di dalam card */
.card h3::after {
    display: none;
}

.card p,
.card .renungan-content p,
.card .galeri-content p,
.card .warta-content p {
    font-family: var(--font-body);
    color: var(--c-mid);
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 16px;
}

.card .ayat,
.ayat {
    font-style: italic;
    color: var(--c-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.card a button,
.card .renungan-content a button,
.card .galeri-content a button,
.card .warta-content a button {
    width: 100%;
    padding: 13px 18px;
    background: var(--c-black);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    cursor: pointer;
    margin-top: auto;
    text-align: center;
    transition: opacity var(--t-fast);
}

.card a button:hover {
    opacity: .82;
    transform: none;
}

.komisi-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: var(--c-black);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: uppercase;
    text-align: center;
}

.badge-anak     { background: #000000; }
.badge-remaja   { background: #000000; }
.badge-dewasa   { background: #000000; }
.badge-adiyuswa { background: #000000; }
.badge-umum     { background: var(--c-black); }

.warta-date,
.tanggal-warta {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--c-muted);
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

/* Tombol "Lihat Semua" di bawah section */
section > a > button,
section > a button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--c-black);
    color: white;
    border: none;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    cursor: pointer;
    margin-top: 0;
    transition: opacity var(--t-fast), transform var(--t-fast);
}

section > a > button:hover,
section > a button:hover {
    opacity: .82;
    transform: translateY(-2px);
}


/* =================================================
   3. JADWAL IBADAH
   HTML: section.about
================================================= */

section.about {
    background: var(--c-black);
    padding: 80px 24px;
    text-align: center;
}

section.about h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -.3px;
    margin-bottom: 8px;
}

section.about h2::after {
    background: rgba(255, 255, 255, .25);
}

.tanggal-besar {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jadwal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    justify-content: center;
    gap: 20px;
    max-width: 1060px;
    margin: 36px auto 0;
}

.jadwal-card-modern {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-xl);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: background var(--t-mid) var(--ease),
                border-color var(--t-mid),
                transform var(--t-mid) var(--ease);
}

.jadwal-card-modern:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    transform: translateY(-4px);
}

.jadwal-head {
    padding: 22px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.jadwal-nomor {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 400;
    color: rgba(255, 255, 255, .10);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -1px;
    user-select: none;
}

.tempat { flex: 1; }

.tempat h3 {
    margin: 0 0 4px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -.2px;
    line-height: 1.3;
    min-height: auto;
}

/* Override h2::after/h3::after global dari style.css */
.tempat h3::after,
.jadwal-card-modern h3::after {
    display: none;
}

.tempat small {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0;
}

.jadwal-body {
    padding: 18px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.jadwal-body p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
}

/* Override p::after dari style.css jika ada */
.jadwal-body p::after {
    display: none;
}

.jadwal-body p i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

/* Tombol lihat detail jadwal */
section.about > a > button {
    margin-top: 36px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    border-radius: var(--r-pill);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--t-fast),
                border-color var(--t-fast),
                color var(--t-fast);
}

section.about > a > button:hover {
    background: white;
    border-color: white;
    color: var(--c-black);
    opacity: 1;
    transform: none;
}


/* =================================================
   4. QRIS
================================================= */

section.qris-modern {
    padding: 0;
    background: var(--c-black);
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: unset;
}

/* Override section h2::after di qris */
section.qris-modern h2::after {
    display: none;
}

.qris-wrapper {
    padding: 72px 24px;
    display: flex;
    justify-content: center;
}

.qris-card {
    max-width: 1060px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.qris-left,
.qris-right {
    flex: 1;
    min-width: 240px;
}

.qris-left {
    color: white;
    text-align: left;
}

.qris-left .badge {
    display: block;
    width: max-content;
    padding: 5px 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.qris-left h1 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.qris-left p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.qris-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.qris-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 0;
}

.qris-info p strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.qris-note {
    font-size: 13px !important;
    color: rgba(255, 255, 255, .35) !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

.qris-right {
    display: flex;
    justify-content: center;
}

.qris-box {
    background: white;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.qris-box img {
    width: 220px;
    display: block;
}


/* =================================================
   5. PENDETA SECTION
================================================= */

.pendeta-section {
    padding: 80px 24px;
    background: var(--c-bg);
}

/* Override section h2::after */
.pendeta-section h2::after {
    background: var(--c-black);
}

.pendeta-grid {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
    gap: 24px;
}

.pendeta-card {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid) var(--ease),
                box-shadow var(--t-mid) var(--ease),
                border-color var(--t-mid);
}

.pendeta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-border-dark);
}

.pendeta-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(15%);
    transition: filter var(--t-mid);
}

.pendeta-card:hover img {
    filter: grayscale(0%);
}

.pendeta-info {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    border-top: 1px solid var(--c-border);
}

.pendeta-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    margin: 0 0 12px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-black);
    letter-spacing: -.1px;
}

/* Override h3::after global */
.pendeta-info h3::after {
    display: none;
}

.periode {
    display: inline-block;
    padding: 5px 14px;
    background: var(--c-black);
    color: #fff;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .4px;
    margin-bottom: 14px;
}

.pendeta-info p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--c-mid);
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

.aktif-card { position: relative; }

.aktif-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-black);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .4px;
    z-index: 5;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .15);
}


/* =================================================
   6. WARTA, GALERI, RENUNGAN SECTION (index)
================================================= */

section.kegiatan {
    padding: 80px 24px;
    background: var(--c-surface);
    text-align: center;
}

section.galeri {
    padding: 80px 24px;
    background: var(--c-bg);
    text-align: center;
}

section.renungan {
    padding: 80px 24px;
    background: var(--c-surface);
    text-align: center;
}

section.kegiatan h2,
section.galeri h2,
section.renungan h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 400;
    color: var(--c-black);
    letter-spacing: -.3px;
}

.section-subtitle {
    max-width: 580px;
    margin: 8px auto 0;
    font-family: var(--font-body);
    color: var(--c-muted);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.warta-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 24px;
    padding: 0 24px;
}

.warta-card {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid) var(--ease),
                box-shadow var(--t-mid) var(--ease),
                border-color var(--t-mid);
}

.warta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-border-dark);
}

.warta-card img {
    width: 100%;
    height: var(--card-img-h);
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    transition: transform var(--t-mid) var(--ease);
}

.warta-card:hover img { transform: scale(1.04); }

.warta-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.warta-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--c-black);
    margin: 0 0 10px;
    line-height: 1.4;
    letter-spacing: -.2px;
}

/* Override h3::after global */
.warta-content h3::after {
    display: none;
}

.warta-content p {
    font-family: var(--font-body);
    color: var(--c-mid);
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.warta-content a button {
    width: 100%;
    padding: 13px 18px;
    background: var(--c-black);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: auto;
    transition: opacity var(--t-fast);
}

.warta-content a button:hover { opacity: .82; }

.btn-lihat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 10px 18px;
    background: var(--c-black);
    color: #fff;
    text-decoration: none;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    transition: opacity var(--t-fast);
}

.btn-lihat:hover { opacity: .82; }

.btn-lihat-semua {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 13px 28px;
    background: var(--c-black);
    color: white;
    text-decoration: none;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    transition: opacity var(--t-fast), transform var(--t-fast);
}

.btn-lihat-semua:hover {
    opacity: .82;
    transform: translateY(-2px);
}


/* =================================================
   7. MOBILE (max-width: 768px)
================================================= */

@media (max-width: 768px) {

    /* Slider */
    .slider    { height: 360px; }
    .slide img { height: 360px; }

    /* Card grid */
    .dashboard-menu { grid-template-columns: 1fr; padding: 0 16px; }
    .warta-grid     { grid-template-columns: 1fr; padding: 0 16px; }

    /* Jadwal */
    .jadwal-grid  { grid-template-columns: 1fr; }
    section.about { padding: 60px 16px; }

    /* QRIS */
    .qris-wrapper { padding: 48px 16px; }

    .qris-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 32px;
    }

    .qris-left       { text-align: center; }
    .qris-left .badge { margin: 0 auto 18px; }
    .qris-box img    { width: 200px; }

    /* Pendeta */
    .pendeta-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .pendeta-card img { height: 270px; }

    /* Section padding */
    section.kegiatan,
    section.renungan,
    section.galeri,
    .pendeta-section { padding: 60px 16px; }

}

/* =========================================
   ACCESSIBILITY FIX — Font size & contrast
   ========================================= */

/* --- Card universal --- */
.card small,
.card .renungan-content small,
.card .galeri-content small,
.card .warta-content small { font-size: 12px; }

.card h3,
.card .renungan-content h3,
.card .galeri-content h3,
.card .warta-content h3,
.warta-content h3 { font-size: 19px; }

.card p,
.card .renungan-content p,
.card .galeri-content p,
.card .warta-content p,
.warta-content p { font-size: 15px; line-height: 1.8; }

.card .ayat,
.ayat { font-size: 14px; }

.card a button,
.warta-content a button { font-size: 15px; padding: 14px 18px; }

.komisi-badge,
.aktif-badge,
.periode { font-size: 12px; padding: 5px 13px; }

.warta-date,
.tanggal-warta { font-size: 13px; }

/* --- Pendeta --- */
.pendeta-info h3 { font-size: 18px; }
.pendeta-info p  { font-size: 15px; }

/* --- Section subtitle --- */
.section-subtitle { font-size: 16px; }

/* --- Jadwal Ibadah (background hitam) --- */
.tanggal-besar       { color: rgba(255,255,255,.75); font-size: 15px; }
.tempat h3           { font-size: 18px; }
.tempat small        { color: rgba(255,255,255,.70); font-size: 12px; }
.jadwal-nomor        { color: rgba(255,255,255,.18); }
.jadwal-body p       { color: rgba(255,255,255,.88); font-size: 15px; }
.jadwal-body p i     { color: rgba(255,255,255,.75); font-size: 13px; }

section.about > a > button {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.22);
    font-size: 15px;
}

/* --- QRIS (background hitam) --- */
.qris-left .badge { color: rgba(255,255,255,.80); font-size: 12px; }
.qris-left p      { color: rgba(255,255,255,.78); font-size: 16px; }
.qris-info p      { color: rgba(255,255,255,.88); font-size: 15px; }
.qris-info p strong { color: #fff; }
.qris-note        { color: rgba(255,255,255,.65) !important; font-size: 14px !important; }

/* --- Caption slider — pastikan tetap kontras --- */
.caption.center h2 { text-shadow: 0 2px 12px rgba(0,0,0,.45); }

/* --- Mobile — naikkan sedikit di layar kecil --- */
@media (max-width: 768px) {
    .card p,
    .warta-content p,
    .pendeta-info p,
    .jadwal-body p,
    .qris-left p     { font-size: 16px; }

    .card h3,
    .warta-content h3 { font-size: 20px; }
}

/* ===========================
   RESPONSIVE SLIDER
=========================== */

@media (max-width:768px){

.slider{
    height:60vh;
    min-height:340px;
}

.slide img{
    height:100%;
    object-fit:cover;
}

.slide h2{
    font-size:30px !important;
    padding:0 18px;
}

.prev,
.next{
    width:40px;
    height:40px;
    font-size:18px;
}

.dots{
    bottom:18px;
}

.dots span{
    width:10px;
    height:10px;
}

}