.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    background: white;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
}

.nav-links a,
.instagram {
    text-decoration: none;
    color: black;
    font-weight: 300;
    transition: font-weight 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    font-weight: 600;
}

.instagram {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.instagram:hover {
    font-weight: 600;
}

/* POP UP CONTACT */

#popup {
    display: none;
}

.popup-container {
    display: flex;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.312);
    justify-content: center;
    align-items: center;
}

.popup-content {
    width: 450px;
    text-align: center;
    position: absolute;
    z-index: 2;
}

.popup-content img {
    width: 100%;
}

.close {
    position: absolute;
    top: -10px;
    right: -10px;
}

.bouton-cv {
    border: 1px solid #ffffff;
    line-height: 2.5;
    padding: 0px 50px;
    margin-top: 20px;
    font-size: 0.8750rem;
    text-align: center;
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
}

.bouton-cv:hover {
    box-shadow:
        inset -2px -2px 3px rgba(222, 222, 222, 0.6),
        inset 2px 2px 3px rgba(90, 90, 90, 0.6);
}

/* Responsive - Popup Contact */
@media (max-width: 768px) {
    .popup-container {
        display: flex;
        flex-direction: column;
    }

    .popup-content {
        width: 85%;
        padding: 15px;
    }
  
}