/* Navbar */

.navigation-links {
    display: flex;
    justify-content: center;
    /* height: 10vh; */

}

.contact-navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    /* Autres styles existants */
}

.progress-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    /* Ajustez la hauteur selon vos besoins */
    background-color: #e6aa68;
    width: 0;
    /* Commence à 0% de largeur */
    transition: width 0.25s ease-out;
}


.logo {
    position: absolute;
    top: 0px;
    left: 50px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e6aa68;
    z-index: 1000;
}

.contact-info {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-evenly;
    max-height: 6vh;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.hidden {
    max-height: 0;

}
.contact-info ul {
    display: flex;
    margin: 0;
    padding: 0;
}


.icone-r {
    height: 30px;
    width: 30px;

}

.contact-navigation {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgba(29, 30, 24, 0.9);

}

.contact-info li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px 0;
}

.contact-info a {
    color: #1d1e18;
    text-decoration: none;
}

.contact-info li a {
    cursor: pointer;
    /* padding-left: 10px; */
    display: flex;
    align-items: center;

}
.contact-info li img {
   padding: 0 15px;

}

.navigation-links ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: auto 15px;

}

.navigation-links li {
    margin: 20px;
}

.navigation-links a {
    color: #e6aa68;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation-links a:hover {
    color: #fffbbd;
}

.burger-menu {
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.close-icon {
    display: none;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 960px) {
    .navigation-links ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: -100%;
        width: 70vw;
        height: auto;
        background-color: rgba(51, 51, 51, 0.9);
        text-align: center;
        transition: left 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        margin: 0;
        margin-top: 12vh;
        z-index: 1000;
        border-radius: 0px 10px 50px 0px;
    }

    .navigation-links ul.show {
        left: 0;
              width: 70vw;

    }

@keyframes openIconAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-180deg); }
}

@keyframes closeIconAnimation {
    0% { transform: rotate(-180deg); }
    100% { transform: rotate(0deg); }
}

.burger-menu {
    display: block;
    padding: 15px;
    position: fixed;
    right: 0;
    color: #e6aa68;
    /* position: absolute; */
    /* right: 15px; */
    /* top: 60px; */
    font-size: 50px;
    z-index: 1001;
    animation: openIconAnimation 0.3s ease;
}

.close-icon {
    display: none;
    position: absolute;
    position: fixed;
    right: 15px;
    /* top: 60px; */
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    animation: closeIconAnimation 0.3s ease;
}



}