/* ================================
   SOCIAL MEDIA FOOTER (SAFE MOBILE)
================================ */
footer .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1; /* PENTING: jangan menimpa navbar */
    pointer-events: auto;
}

/* ICON STYLE */
footer .social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
}

/* BRAND HOVER */
footer .social-icons a.facebook:hover  { background: #1877f2; }
footer .social-icons a.instagram:hover {
    background: radial-gradient(circle at 30% 30%,
    #feda75, #d62976, #962fbf, #4f5bd5);
}
footer .social-icons a.youtube:hover   { background: #ff0000; }
footer .social-icons a.whatsapp:hover  { background: #25d366; }

/* HOVER EFFECT */
footer .social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    border-color: transparent;
}

/* DISABLED */
footer .social-icons a.disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
    footer .social-icons {
        justify-content: center;
        gap: 12px;
    }

    footer .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 10px;
    }
}

/* EXTRA SMALL PHONE */
@media (max-width: 360px) {
    footer .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* ================================
   NAVBAR FIX (WAJIB)
================================ */
.navbar {
    position: relative;
    z-index: 9999; /* PASTI DI ATAS SEMUA */
}

/* LOGO NAVBAR */
.logo-gereja {
    height: 48px;
}

@media (max-width: 768px) {
    .logo-gereja {
        height: 38px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }
}

/* ===== FIX MENU MOBILE TIDAK BISA DIKLIK ===== */

/* Navbar HARUS PALING ATAS */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* Tombol hamburger */
.navbar-toggler {
    z-index: 10000;
}

/* CEGAH ELEMEN MENIMPA */
@media (max-width: 768px) {

    section,
    header,
    .banner,
    .hero,
    .slider,
    .carousel,
    .background {
        position: relative !important;
        z-index: auto !important;
    }

    body {
        overflow-x: hidden;
    }
}
