/* ===================== GLOBAL ===================== */
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #2b2b2b;
}

a {
    text-decoration: none;
}

.footer-link {
    color: #c9c9c9;
    display: inline-block;
    margin-bottom: 6px;
    transition: color .2s;
}
.footer-link:hover {
    color: #ffc107;
}

/* ===================== NAVBAR ===================== */
.navbar .nav-link {
    font-weight: 500;
    margin-left: 6px;
}
.navbar .nav-link.active {
    color: #ffc107 !important;
    font-weight: 700;
}

/* ===================== HERO (index.php) ===================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../../img/gereja.jpeg') center/cover no-repeat;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,60,30,.75), rgba(0,0,0,.65));
}

.hero .content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.1rem;
    opacity: .9;
}

/* ===================== VISI MISI SECTION ===================== */
.visi-section {
    padding: 60px 0;
    background: #fff;
}

.visi-section .card {
    border: none;
    border-radius: 14px;
    transition: transform .25s ease;
}
.visi-section .card:hover {
    transform: translateY(-6px);
}

/* ===================== KONTAK (footer info di index.php) ===================== */
.kontak {
    background: linear-gradient(135deg, #198754, #145c3a);
}

/* ===================== GALERI ===================== */
.gallery-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-img {
    height: 220px;
    object-fit: cover;
}

/* ===================== KARTU UMUM ===================== */
.card {
    border-radius: 12px;
}

/* ===================== ADMIN PANEL ===================== */
.admin-sidebar {
    min-height: 100vh;
    background: #1e2a26;
}

.admin-sidebar a {
    color: #cfd8d5;
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: #198754;
    color: #fff;
}

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.banner-sambutan {
    background: linear-gradient(120deg, #198754, #145c3a);
    color: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.badge-status {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 600;
}
.badge-status i { color: #4ade80; font-size: .5rem; margin-right: 6px; }

.kartu-stat {
    background: #fff;
    border-radius: 20px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
}
.kartu-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.1);
}
.kartu-stat-sorot {
    border: 1.5px solid #f7b2c4;
}

.ikon-bulat {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.1rem;
    color: #fff;
}

.ikon-bulat-kecil {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #fff;
}

.bg-hijau  { background: linear-gradient(135deg, #198754, #2fae76); }
.bg-biru   { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.bg-ungu   { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.bg-teal   { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.bg-oranye { background: linear-gradient(135deg, #f97316, #fb923c); }
.bg-pink   { background: linear-gradient(135deg, #ec4899, #f472b6); }

.label-pil {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.pil-hijau  { background:#e6f4ea; color:#198754; }
.pil-biru   { background:#e8f1fe; color:#3b82f6; }
.pil-ungu   { background:#f1ebfe; color:#8b5cf6; }
.pil-teal   { background:#e2f8f5; color:#14b8a6; }
.pil-oranye { background:#fef1e6; color:#f97316; }
.pil-pink   { background:#fce8f1; color:#ec4899; }

.garis-judul {
    display: inline-block;
    width: 4px;
    height: 14px;
    background: #c69a3e;
    border-radius: 4px;
    margin-right: 8px;
}

.titik-baru {
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}