/* ===== BiodataMaker Modern Header - Phase 1 ===== */

.container-header {
    background: linear-gradient(135deg, #fff3c4 0%, #f8d96b 100%);
    box-shadow: 0 8px 25px rgba(90, 55, 0, 0.12);
    border-bottom: 1px solid rgba(120, 80, 0, 0.12);
}

.container-header .grid-child {
    max-width: 1280px;
}

.navbar-brand {
    padding: 22px 0 14px;
}

.navbar-brand .brand-logo,
.navbar-brand .brand-logo span {
    font-size: 2.15rem;
    font-weight: 600;
    color: #2a1f12;
    letter-spacing: .2px;
    text-decoration: none;
}

.container-nav {
    padding-bottom: 18px;
}

.container-header .mod-menu {
    gap: 8px;
    align-items: center;
}

.container-header .mod-menu > .nav-item > a {
    color: #2c2418;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: all .22s ease;
}

.container-header .mod-menu > .nav-item > a:hover,
.container-header .mod-menu > .nav-item.current > a,
.container-header .mod-menu > .nav-item.active > a {
    background: #ffffff;
    color: #9b2f2f;
    box-shadow: 0 6px 18px rgba(120, 75, 0, 0.14);
}

.container-header .mod-menu__toggle-sub {
    border: 0;
    background: transparent;
    color: #2c2418;
    padding: 6px;
    margin-left: -8px;
}

.container-header .mod-menu__sub {
    background: #ffffff;
    border: 1px solid rgba(120, 75, 0, 0.12);
    border-radius: 14px;
    box-shadow: 0 16px 35px rgba(35, 22, 0, 0.16);
    padding: 10px;
    min-width: 230px;
}

.container-header .mod-menu__sub a {
    color: #2c2418;
    padding: 9px 12px;
    border-radius: 10px;
}

.container-header .mod-menu__sub a:hover {
    background: #fff4d6;
    color: #9b2f2f;
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-brand {
        padding: 16px 0 10px;
    }

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

    .container-header .mod-menu {
        gap: 4px;
    }

    .container-header .mod-menu > .nav-item > a {
        padding: 9px 10px;
        border-radius: 10px;
    }
}