/* Navbar */

.navigation-links {
    display: flex;
    justify-content: space-between;

}

.contact-navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.contact-info img {
    height: 30px;
    width: 30px;
    padding: 5px;
}


.progress-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #d4c490;
    width: 0;
    transition: width 0.25s ease-out;
}


.logo {
    font-family: "Cherish", cursive;
    font-style: normal;
    font-size: 30px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    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;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    justify-content: space-evenly;
    transition: opacity 0.4s ease-in-out, max-height 0.3s ease-in-out
}

.contact-info.show {
    opacity: 1;
    max-height: 6vh;
}

.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 .logo-nav a {
    display: none;
}

.contact-info li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px;
}

.contact-info a {
    color: #1d1e18;
    text-decoration: none;
}

.contact-info li a {
    cursor: pointer;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.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: #d4c490;
    text-decoration: none;
    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;
}