/* ============================
   GKI CIKARANG — BERANDA
   ============================ */

.section-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.25;
    color: var(--color-text);
    margin: 0 0 16px;
}

.section-lead {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-muted);
    margin: 0;
    max-width: 640px;
}

.section-header {
    margin-bottom: 40px;
}

.btn-solid,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 8px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-solid {
    background: #ffffff;
    color: #211F1F;
}

.btn-solid:hover {
    transform: translateY(-2px);
    color: #211F1F;
    background: #f3f3f3;
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111111;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 46%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 96px;
    padding-bottom: 80px;
    width: 100%;
}

.hero-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    margin: 0;
    font-size: 48px;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.hero-description {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: #E2E8F0;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

/* VERSE */
.verse-section {
    position: relative;
    z-index: 3;
    margin-top: -80px;
    padding: 80px 0 40px;
    background: #ffffff;
    color: var(--color-text);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    overflow: hidden;
}

.verse-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verse-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.verse-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
}

.verse-text {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    color: var(--color-text);
}

.verse-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    max-width: 280px;
    height: 12px;
}

.verse-divider::before,
.verse-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #211F1F;
}

.verse-divider span {
    width: 8px;
    height: 8px;
    margin: 0 12px;
    background: #211F1F;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.verse-ref {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

/* JADWAL */
.jadwal-section {
    padding: 24px 0 0;
    background: #ffffff;
}

.jadwal-section .section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.jadwal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.jadwal-card {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: center;
    min-height: 560px;
}

.jadwal-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.jadwal-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.jadwal-card-body {
    position: relative;
    z-index: 1;
    padding: 48px;
    width: 100%;
}

.jadwal-card-body h3 {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.35;
    color: #ffffff;
}

.jadwal-card-body ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: jadwal;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jadwal-card-body li {
    counter-increment: jadwal;
    font-size: 14px;
    line-height: 22px;
}

.jadwal-card-body li span {
    display: block;
    color: #ffffff;
}

.jadwal-card-body li span::before {
    content: counter(jadwal) ". ";
}

.jadwal-card-body li strong {
    display: block;
    margin-top: 4px;
    padding-left: 1.15em;
    font-weight: 400;
    text-align: left;
    color: #ffffff;
}

/* KOMISI */
.komisi-section {
    padding: 80px 0;
    background: #ffffff;
}

.komisi-header {
    text-align: center;
}

.komisi-header .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.komisi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.komisi-visual {
    border-radius: 32px;
    overflow: hidden;
    min-height: 420px;
}

.komisi-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.komisi-accordion {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.komisi-item {
    border-bottom: 1px solid #E5E5E5;
}

.komisi-item:first-child {
    border-top: 1px solid #E5E5E5;
}

.komisi-item-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    text-align: left;
    color: var(--color-text);
}

.komisi-num {
    flex-shrink: 0;
    width: 32px;
    font-size: 16px;
    font-weight: 500;
    color: #B0B0B0;
}

.komisi-name {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.komisi-chevron {
    flex-shrink: 0;
    color: #211F1F;
    transition: transform 0.25s ease;
}

.komisi-item.is-open .komisi-chevron {
    transform: rotate(180deg);
}

.komisi-item-body {
    display: none;
    padding: 0 0 18px 48px;
}

.komisi-item.is-open .komisi-item-body {
    display: block;
}

.komisi-item-body p {
    font-size: 15px;
    line-height: 24px;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.komisi-katekisasi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 8px;
}

.komisi-katekisasi strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

@media (max-width: 575px) {
    .komisi-katekisasi {
        grid-template-columns: 1fr;
    }
}

/* PENDETA */
.pendeta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #202020 0%, #424242 50%, #202020 100%);
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}

.pendeta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pendeta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pendeta-inner {
    position: relative;
    z-index: 1;
}

.pendeta-header {
    text-align: center;
}

.pendeta-header .section-heading {
    color: #ffffff;
}

.pendeta-header .section-lead {
    margin-left: auto;
    margin-right: auto;
    color: #e8e8e8;
}

.pendeta-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.pendeta-card {
    position: relative;
    flex: 1 1 0;
    min-width: 180px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
}

.pendeta-card-bg,
.pendeta-card-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pendeta-card-bg img {
    object-fit: cover;
    object-position: center;
    transition: opacity 0.35s ease;
}

.pendeta-card-bg-hover {
    opacity: 0;
}

.pendeta-card:hover .pendeta-card-bg-hover,
.pendeta-card:focus-within .pendeta-card-bg-hover {
    opacity: 1;
}

.pendeta-card:hover .pendeta-card-bg-idle,
.pendeta-card:focus-within .pendeta-card-bg-idle {
    opacity: 0;
}

.pendeta-card-photo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
}

.pendeta-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 48px 12px 16px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

/* GALERI TEASER */
.galeri-teaser {
    padding: 80px 0;
    background: #ffffff;
}

.galeri-header {
    text-align: center;
}

.galeri-header .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.galeri-carousel {
    --galeri-slide: min(680px, 52vw);
    position: relative;
}

.galeri-viewport {
    overflow: hidden;
}

.galeri-track {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.galeri-slide {
    position: relative;
    display: block;
    flex: 0 0 var(--galeri-slide);
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.96);
    transition: transform 0.45s ease;
}

.galeri-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeri-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    transition: opacity 0.45s ease;
}

.galeri-slide.is-active {
    transform: scale(1);
}

.galeri-slide.is-active::after {
    opacity: 0;
}

.galeri-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #4a4a4a;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.galeri-nav--prev {
    left: calc(50% - (var(--galeri-slide) / 2));
    transform: translate(-50%, -50%);
}

.galeri-nav--next {
    right: calc(50% - (var(--galeri-slide) / 2));
    transform: translate(50%, -50%);
}

.galeri-nav:hover {
    background: #f5f5f5;
}

/* FIRMAN */
.firman-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.firman-header {
    text-align: center;
}

.firman-header .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.firman-grid {
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 32px;
    align-items: start;
}

.firman-label {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ig-embed {
    min-height: 320px;
}

.ig-embed iframe,
.ig-embed .instagram-media {
    margin: 0 auto !important;
}

/* BERITA */
.berita-section {
    padding: 80px 0 40px;
    background: #f7f7f7;
}

.berita-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.berita-header .section-heading {
    margin: 0;
}

.berita-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.berita-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.25s ease;
}

.berita-card:hover {
    transform: translateY(-4px);
    color: var(--color-text);
}

.berita-card-img {
    height: 200px;
    overflow: hidden;
}

.berita-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.berita-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.berita-card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
}

.berita-date {
    font-size: 13px;
    color: var(--color-muted);
}

.berita-more {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 1023px) {
    .hero-title {
        font-size: 36px;
    }

    .jadwal-split,
    .komisi-layout,
    .firman-grid,
    .berita-grid {
        grid-template-columns: 1fr;
    }

    .komisi-visual {
        min-height: 320px;
        max-height: 420px;
    }

    .komisi-layout {
        gap: 32px;
    }

    .galeri-carousel {
        --galeri-slide: 72vw;
    }

    .galeri-slide {
        height: 240px;
    }

    .hero-bg img {
        object-position: 80% center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 85vh;
    }

    .hero-title {
        font-size: 30px;
    }

    .section-heading {
        font-size: 26px;
    }

    .verse-section {
        margin-top: -48px;
        padding: 56px 0 24px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .pendeta-section {
        border-top-left-radius: 48px;
        border-bottom-right-radius: 48px;
    }

    .jadwal-section,
    .komisi-section,
    .pendeta-section,
    .galeri-teaser,
    .firman-section,
    .berita-section {
        padding: 56px 0;
    }

    .jadwal-section {
        padding-top: 16px;
    }

    .verse-text {
        font-size: 16px;
        line-height: 28px;
    }

    .jadwal-card {
        min-height: 420px;
    }

    .jadwal-card-body {
        padding: 32px 24px;
    }

    .berita-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .galeri-carousel {
        --galeri-slide: 82vw;
    }

    .galeri-slide {
        height: 200px;
        border-radius: 16px;
    }

    .galeri-nav {
        width: 40px;
        height: 40px;
    }
}
