nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 80px;
    width: 100%;
    gap: 250px;
    background-color: rgb(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.nav-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 60%;
}

.nav-logo {
    height: 100%;
    cursor: pointer;
}

.sign-in {
    padding: 12px 32px;
    color: white;
    border: none;
    background-color: black;
    border-radius: var(--primary-border-radius);
    cursor: pointer;
    font-size: 20px;
    transition: background-color var(--primary-transition), color var(--primary-transition);
}

.sign-in:hover {
    background: white;
    color: black;
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    color: rgb(180, 180, 180);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: color var(--primary-transition);
}

.nav-link:hover {
    color: white;
}

.nav-links:hover {color: rgb(0, 0, 0);}

.settings {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
    margin-right: 20px;
    gap: 8px;
}

.settings-line {
    height: 5px;
    width: 35px;
    background-color: rgb(255, 255, 255);
    border-radius: var(--primary-border-radius);
}

.responsive-nav {
    display: none;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    padding: 15px;
    width: calc(93% - 30px);
    margin-top: 10px;
    border: 2px solid rgb(150, 150, 150);
    border-radius: var(--primary-border-radius);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.responsive-nav-logo-container {
    display: flex;
    justify-content: space-between;
}

.responsive-nav-logo {
    height: 50px;
    width: auto;
}

.closing-icon {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
}

.responsive-nav-links-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.responsive-nav-link {
    font-size: 18px;
    font-weight: 700;
    color: white;
    cursor: pointer;
}

.responsive-sign-in {
    margin-top: 20px;
    align-self: center;
    width: 60%;
    padding: 12px 32px;
    color: black;
    font-weight: 700;
    border: none;
    background-color: var(--primary-color);
    border-radius: var(--primary-border-radius);
    cursor: pointer;
    font-size: 20px;
    transition: background-color var(--primary-transition), color var(--primary-transition);
}

@media only screen and (max-width: 1300px) {
    nav {
        gap: 100px;
    }
}

@media only screen and (max-width: 800px) {
    nav {
        height: 60px;
        justify-content: space-between;
    }

    .nav-links-container {
        display: none;
    }

    .sign-in {
        display: none;
    }

    .nav-logo-container {
        width: 80px;
    }

    .settings {
        gap: 5px;
        display: flex;
    }
}