/* ════════════════════════════════════════════════════════════
 * GBI Slawi — schedule.css
 * Kalender bulanan dan jadwal ibadah
 * ════════════════════════════════════════════════════════════ */


/* ================================================
   EXTRACTED FROM BLADE TEMPLATES
   ================================================ */

/* ── SECTION WRAPPERS ── */
.section-jadwal {
    padding: 100px 24px;
    background: var(--bg2);
}

.section-profil {
    padding: 100px 24px;
    background: var(--bg);
}

.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

/* ── CONTAINER ── */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── SECTION HEADER ── */
.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head.mb-64 {
    margin-bottom: 64px;
}

.section-head .pill {
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text2);
    max-width: 500px;
    margin: 0 auto;
}

/* ── FILTER TABS ROW ── */
.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ── SCHEDULE GRID ── */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* ── SCHEDULE CARD ── */
.sched-card {
    padding: 28px;
    cursor: pointer;
}

.sched-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.sched-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sched-icon-gold {
    background: rgba(245, 200, 66, 0.2);
}

.sched-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg4);
    color: var(--text3);
}

.sched-badge-gold {
    background: var(--gold);
    color: #000;
    font-weight: 600;
}

.sched-badge-special {
    background: rgba(245, 200, 66, 0.15);
    color: var(--gold);
    font-weight: 600;
}

.sched-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sched-title-gold {
    color: var(--gold);
}

.sched-time {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.sched-speaker {
    color: var(--text3);
    font-size: 13px;
    margin-bottom: 12px;
}

.sched-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── SCHEDULE ACTION BUTTONS ── */
.sched-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text2);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.sched-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sched-btn.wa:hover {
    border-color: #25D366;
    color: #25D366;
}

/* ── CALENDAR CARD ── */
.calendar-card {
    padding: 36px;
    max-width: 700px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.calendar-title {
    font-size: 24px;
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg4);
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.calendar-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    text-align: center;
}

.calendar-day-name {
    font-size: 11px;
    color: var(--text3);
    font-weight: 600;
    padding: 8px 0;
}

#calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text3);
}

.legend-dot {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ── HERO DECO CIRCLES ── */
.hero-deco-left {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-deco-right {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 60, 200, 0.05), transparent 70%);
    pointer-events: none;
}

/* ── PROFILE SECTION ── */
.profile-header-text h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 16px;
}

.profile-header-text p {
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.gedung-placeholder {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.gedung-placeholder .icon {
    font-size: 64px;
}

.gedung-placeholder .label {
    color: var(--text3);
    font-size: 14px;
}

.sejarah-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sejarah-text p {
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: justify;
}

.visi-card {
    padding: 36px;
}

.visi-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.visi-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.visi-card p {
    color: var(--text2);
    line-height: 1.8;
    font-size: 16px;
}

.misi-card {
    padding: 36px;
}

.misi-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.misi-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.misi-card ul {
    color: var(--text2);
    line-height: 1.9;
    list-style: none;
    font-size: 15px;
    padding: 0;
}

.nilai-inti-wrapper {
    margin-bottom: 80px;
}

.nilai-inti-wrapper h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.nilai-inti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.nilai-item {
    padding: 24px;
    text-align: center;
}

.nilai-item .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.nilai-item .label {
    font-weight: 600;
    margin-bottom: 6px;
}

.nilai-item .desc {
    color: var(--text3);
    font-size: 13px;
}

/* ── ORG CHART ── */
.org-wrapper-inner {
    max-width: 700px;
    margin: 0 auto;
}

.org-top {
    display: flex;
    justify-content: center;
}

.org-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
}

.org-children {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.org-item {
    min-width: 140px;
    text-align: center;
}

.org-item .role {
    font-weight: 600;
    font-size: 14px;
}

.org-item .name {
    color: var(--text3);
    font-size: 12px;
}

.org-item .icon {
    font-size: 16px;
    margin-bottom: 2px;
}

.org-senior .role {
    font-weight: 700;
    font-size: 15px;
    color: var(--gold);
}

.org-senior .name {
    color: var(--text3);
    font-size: 12px;
}

.org-senior .icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* ── PASTOR PROFILE CARDS ── */
.pastor-card {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pastor-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg4);
    border: 2px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.pastor-info {
    flex: 1;
    min-width: 0;
}

.pastor-info .badge {
    margin-bottom: 8px;
    font-size: 10px;
}

.pastor-info .name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pastor-info .meta {
    color: var(--text3);
    font-size: 13px;
    margin-bottom: 10px;
}

.pastor-info p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

/* ── OPERASIONAL CARD ── */
.operasional-card-inner {
    padding: 32px;
}

.operasional-card-inner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.operasional-list-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operasional-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.operasional-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.operasional-row .day {
    font-weight: 500;
}

.operasional-row .time {
    color: var(--gold);
    font-weight: 600;
}

.operasional-row .note {
    color: var(--text2);
    font-size: 13px;
}

/* ── MAP CARD ── */
.map-card-inner {
    padding: 32px;
}

.map-card-inner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.map-card-inner .address {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ── MEDIA SECTION ── */
.section-media-inner {
    padding: 100px 24px;
    background: var(--bg2);
}

.media-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── COMMUNITY SECTION ── */
.section-community {
    padding: 100px 24px;
    background: var(--bg);
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {

    .section-jadwal,
    .section-profil,
    .section-community,
    .section-media-inner {
        padding: 64px 20px;
        padding-top: calc(65px + 48px);
    }

    .calendar-card {
        padding: 24px 16px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .pastor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .operasional-card-inner,
    .map-card-inner {
        padding: 24px 20px;
    }

    .visi-card,
    .misi-card {
        padding: 24px 20px;
    }

    .sched-actions {
        justify-content: center;
    }
}
