/* ==========================================================================
   HEADER / NAVBAR GLOBAL - ENERGY MONEY BOX
   ========================================================================== */

.navbar-noua {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    background-color: transparent; /* Se adaptează pe fundalul paginii */
    padding: 10px 0;
    width: 100%;
}

.nav-logo {
    font-size: 28px;
    font-weight: bold;
    font-family: Georgia, serif;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #777777;
    margin-left: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-links a.active {
    color: #dca134;
    border-bottom: 2px solid #dca134;
}

.nav-links a:hover {
    color: #dca134;
}