/* ================================
   FONT
================================ */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
}

/* ================================
   NAVBAR STICKY
================================ */
#mainNavbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;

    /* tinggi awal navbar */
    padding-top: 20px;
    padding-bottom: 20px;

    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* kondisi saat scroll */
#mainNavbar.navbar-shrink {
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ================================
   LOGO
================================ */
.logo-left {
    height: 75px;
}

.logo-inovasi {
    height: 90px;
}

/* ================================
   JARAK LOGO KE MENU (INI YANG ANIMASI)
================================ */
.logo-wrapper {
    margin-bottom: 22px;     /* jarak normal */
    transition: margin 0.3s ease;
}

/* saat scroll → jarak mengecil */
#mainNavbar.navbar-shrink .logo-wrapper {
    margin-bottom: 6px;
}

/* ================================
   MENU
================================ */
.nav-menu {
    margin: 0;
    padding: 0;
}

.nav-menu .nav-link {
    color: #444;
    font-weight: 500;
    margin: 0 14px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.nav-menu .nav-link.active,
.nav-menu .nav-link:hover {
    color: #0d6efd;
    font-weight: 600;
}

/* ================================
   BUTTON MEDIA SOSIAL
================================ */
.navbar-custom .btn {
    font-size: 14px;
    padding: 10px 18px;
}

/* ================================
   OFFCANVAS SOSIAL (HITAM)
================================ */
.offcanvas-social {
    background: #0b0b0b !important;
    color: white;
}

.offcanvas-social .offcanvas-header {
    border-bottom: 1px solid #222;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid #222;
    font-size: 18px;
    font-weight: 500;
    transition: 0.2s;
}

.social-item:hover {
    background: #111;
    color: white;
}

.social-item i {
    font-size: 32px;
    color: white;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .logo-inovasi {
        height: 42px;
    }

    .logo-left {
        height: 34px;
    }

    .logo-wrapper {
        margin-bottom: 12px;
    }

    .nav-menu .nav-link {
        margin: 0 8px;
        font-size: 14px;
    }
}


/* STRICT LOGO SIZING FOR NAVBAR */
.logo-inovasi, img.logo-inovasi {
    max-height: 45px !important;
    height: 45px !important;
    width: auto !important;
    object-fit: contain !important;
}

.logo-left, img.logo-left {
    max-height: 40px !important;
    height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
}
