/* backend/domains/layout/static/layout/css/navbar.css */

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

.custom-navbar {
    background-color: #047cf6 !important;
    z-index: 1030;
}

.custom-navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.custom-navbar-brand:hover {
    color: #d1eaff !important;
}

.custom-nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-nav-link:hover,
.custom-nav-link:focus {
    color: #d1eaff !important;
}

/* Language switch */
.custom-language-form {
    margin-left: 10px;
}

.custom-language-select {
    width: auto;
    height: 30px;
    font-size: 0.9rem;
}

/* Notification badge */
.notif-badge {
    display: none;
    font-size: 0.7rem;
}

/* Mobile menu button */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* =====================================================
   Navbar Investor CTA
   ===================================================== */

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.investor-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #8fd3ff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.investor-link:hover {
    color: #ffffff;
    background: rgba(0, 168, 255, 0.22);
    border-color: rgba(0, 168, 255, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 168, 255, 0.25);
}

.investor-link:focus,
.investor-link:active {
    color: #ffffff;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .custom-language-form {
        justify-content: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}


