.nav-top-bar {
    position: fixed;
    width: 100%;
    z-index: 100;
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 900px;
    width: var(--max-window-width);
    height: 60px;
    background-color: var(--card-color);
    border-radius: 5px;
}

.nav-logo {
    font-size: 25px;
    margin-left: 10px;
    margin-right: 20px;
    cursor: pointer;
}

.nav-logo:hover {
    color: var(--orange-color);
}

.nav-btn {
    margin-right: 10px;
    cursor: pointer;
}

.nav-btn:hover {
    color: var(--orange-color);
}

.nav-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    right: 50px;
    margin-right: 10px;
}

.nav-btn-minimal {
    display: none;
    width: 25px;
    height: 25px;
}

.nav-social-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.nav-social-icon:first-child {
    margin-right: 10px;
}

.nav-theme {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    right: 0;
    margin-right: 10px;
}

.nav-theme-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.nav-theme-icon .moon, .sun {
    display: none;
}

@media (min-width: 320px) and (max-width: 768px) {
    .nav-container {
        width: 100%;
        border-radius: 0;
    }

    .nav-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .nav-btn {
        display: none;
    }

    .nav-btn-minimal {
        display: block;
        margin-right: 10px;
    }

    .nav-btn-minimal:nth-child(6) {
        margin-left: -10px;
    }

    .nav-btn-minimal:last-child {
        margin-right: 0;
    }

    .nav-social {
        margin-right: 0;
        right: 40px;
    }

    .nav-social-icon {
        width: 25px;
        height: 25px;
    }

    .nav-theme-icon {
        width: 25px;
        height: 25px;
    }

    .nav-theme {
        margin-right: 5px;
    }
}
