/* ── Navbar ── */
.navbar {
    padding: 0;
    background: #0e7490;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.navbar-brand {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 0 1rem;
    line-height: 56px;
    display: flex;
    align-items: center;
}
.navbar-brand:hover { color: #e0f7fa; }

.navbar-toggler {
    margin-right: .75rem;
    padding: .25rem .5rem;
    border-color: rgba(255,255,255,.4);
}

/* Nav items */
.site-nav { gap: 2px; }

.site-nav > .nav-item > a {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    line-height: 56px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85) !important;
    white-space: nowrap;
    transition: background .15s, color .15s;
}

.site-nav > .nav-item:hover > a,
.site-nav > .nav-item > a:focus {
    background: rgba(255,255,255,.12);
    color: #fff !important;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: .375rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    z-index: 9999;
    padding: .4rem 0;
}

.has-dropdown:hover .dropdown-box { display: block; }

.dropdown-box-item { list-style: none; }

.dropdown-box-item a {
    display: block;
    padding: .45rem 1rem;
    font-size: 13px;
    color: #212529;
    text-decoration: none;
    transition: background .15s;
}
.dropdown-box-item a:hover {
    background: #f1f5f9;
    color: #0e7490;
}

/* Sticky */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
}

.main-holder { margin-top: 56px; }
