/* -------------Nav bar ---------------- */

nav {
    /* backdrop-filter: blur(20px); */
    z-index: 5;
    top: 0;
    position: fixed;
    width: 100%;
    height: 80px;
    padding-inline: 6vw;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px;
}

.nav-bar {
    /* margin-right: 25px; */
    align-items: center;
    display: flex;
    gap: 40px;
}

.nav-logo {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 600;
}

.nav-bar li {
    list-style: none;
}

.nav-bar a {
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    color: var(--secondary-color);
}

.active-link {
    position: relative;
    color: var(--primary-color);
    transition: .3s;
}

.active-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* ------------------cv download button -------------- */
.nav-bar i {
    color: var(--secondary-color);
    font-size: 15px;
    padding: 0px 5px 0px 0px;
}

.nav-button button {
    background-color: var(--gray-color);
    color: var(--secondary-color);
    font-weight: 500;
    border: 0px;
    border-radius: 5px;
    padding: 15px 11px 15px 11px;
    transition: all ease 0.3s;
}

.nav-button:hover .nav_cv_btn {
    color: var(--color-white);
    background-color: var(--primary-color);
}

.menu_lines {
    display: none;
}

.menu_line_btn {
    cursor: pointer;
    color: var(--color-black);
    background-color: transparent;
    border: none;
    font-size: 23px;
}

/* -------------hidden nav bar  ---------------- */

.hidden-navbar.show {
    display: flex;/* Show the navbar when the 'show' class is present */
}

.hidden-navbar {
    display: none;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background-color: rgb(0 0 0 / 34%);
    z-index: 4;
    transition: all ease 0.5s;
}

.hidden-navbar-options li {
    list-style: none;
}

.hidden-navbar-options li>a {
    padding-left: 10px;
    color: var(--color-black);
    text-decoration: none;
    transition: all ease 0.3s;
}

.hidden-navbar-options {
    display: flex;
    flex-direction: column;
    gap: 40px;
}