/* Navbar commune pour toutes les pages */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    padding: 14px 16px;
}

.nav-links a:hover {
    color: #0088a9 !important;
}

.nav-links .active {
    color: #0088a9 !important;
}

.nav-links .cv-link {
    background: linear-gradient(45deg, #0984E3, #00CEC9);
    padding: 9px 25px;
    border-radius: 50px;
    color: white !important;
}

.nav-links .cv-link:hover {
    opacity: 0.9;
    color: white !important;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}