/*******************************************************************************
  File Name: root/assets/css/navbar.css
  Purpose:   Topbar + Navbar
*******************************************************************************/

/* =====================================================
   TOP BAR
===================================================== */

.topbar {

    background: #111827;

    color: #ffffff;

    font-size: 13px;

    padding: 8px 0;

}

.topbar .container {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 20px;

}

/* =====================================================
   TOPBAR LINKS
===================================================== */

.topbar-link {

    color: rgba(255,255,255,.85);

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    transition: all .25s ease;

}

.topbar-link i {

    margin-right: 6px;

    font-size: 14px;

}

.topbar-link:hover {

    color: #ffffff;

}

/* =====================================================
   NAVBAR
===================================================== */

.modern-navbar {

    background: #ffffff;

    border-bottom: 1px solid #ececec;

    transition: all .25s ease;

    z-index: 1000;

}

/* =====================================================
   LOGO
===================================================== */

.navbar-brand {

    padding: 0;

}

.logo-img {

    height: 56px;

    width: auto;

}

/* =====================================================
   NAV LINKS
===================================================== */

.modern-navbar .nav-link {

    color: #212529;

    font-weight: 600;

    font-size: 15px;

    padding: 14px 16px;

    transition: all .25s ease;

}

.modern-navbar .nav-link:hover {

    color: #0d6efd;

}

.modern-navbar .nav-link.active {

    color: #0d6efd;

}

/* =====================================================
   DROPDOWN
===================================================== */

.dropdown-menu {

    border: 1px solid #ececec;

    padding: 8px 0;

    min-width: 220px;

}

.dropdown-item {

    padding: 10px 18px;

    font-size: 14px;

    transition: background .2s ease;

}

.dropdown-item:hover {

    background: #f8f9fa;

    color: #0d6efd;

}

/* =====================================================
   SEARCH BUTTON
===================================================== */

.nav-cta {

    padding: 8px 18px;

    font-size: 14px;

    font-weight: 600;

    transition: all .25s ease;

}

.nav-cta:hover {

    transform: translateY(-1px);

}

/* =====================================================
   MOBILE TOGGLE
===================================================== */

.navbar-toggler {

    box-shadow: none !important;

    border: 0;

}

.navbar-toggler:focus {

    box-shadow: none;

}

/* =====================================================
   STICKY NAVBAR
===================================================== */

.sticky-top {

    top: 0;

    z-index: 1030;

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .topbar {

        display: none;

    }

    .logo-img {

        height: 46px;

    }

    .modern-navbar .nav-link {

        padding: 12px 0;

    }

    .modern-navbar .dropdown-menu {

        border: 0;

        padding-left: 15px;

        box-shadow: none !important;

    }

    .nav-cta {

        width: 100%;

        margin-top: 15px;

    }

}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .logo-img {

        height: 64px;

    }

    .modern-navbar .nav-link {

        padding: 16px 18px;

    }

}